From 8de14024288fbf3bfb01456f11aa22566800696a Mon Sep 17 00:00:00 2001 From: Tadayuki Onishi Date: Thu, 17 Oct 2024 19:18:06 +0900 Subject: [PATCH] apply lint --- examples/application/main.tf | 4 ++-- examples/create-for-rbac/outputs.tf | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/application/main.tf b/examples/application/main.tf index c75b56065..dc2650666 100644 --- a/examples/application/main.tf +++ b/examples/application/main.tf @@ -45,7 +45,7 @@ resource "azuread_application" "widgets_app" { resource_access { # User.Read - id = "e1fe6dd8-ba31-4d61-89e7-88639da4683d" + id = "e1fe6dd8-ba31-4d61-89e7-88639da4683d" type = "Scope" } } @@ -53,7 +53,7 @@ resource "azuread_application" "widgets_app" { required_resource_access { resource_app_id = azuread_application.widgets_service.application_id - dynamic resource_access { + dynamic "resource_access" { for_each = azuread_application.widgets_service.api.0.oauth2_permission_scope iterator = scope diff --git a/examples/create-for-rbac/outputs.tf b/examples/create-for-rbac/outputs.tf index 0b99a6adf..54e12de6a 100644 --- a/examples/create-for-rbac/outputs.tf +++ b/examples/create-for-rbac/outputs.tf @@ -14,7 +14,7 @@ output "client_certificate" { } output "client_key" { - value = tls_private_key.example.private_key_pem + value = tls_private_key.example.private_key_pem sensitive = true }