Skip to content

Commit

Permalink
apply lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Tadayuki Onishi committed Oct 17, 2024
1 parent b3e8f5a commit 8de1402
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions examples/application/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ resource "azuread_application" "widgets_app" {

resource_access {
# User.Read
id = "e1fe6dd8-ba31-4d61-89e7-88639da4683d"
id = "e1fe6dd8-ba31-4d61-89e7-88639da4683d"
type = "Scope"
}
}

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

Expand Down
2 changes: 1 addition & 1 deletion examples/create-for-rbac/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 8de1402

Please sign in to comment.