From c4095118ea4bc470daf0750724a0af8267e5d7bb Mon Sep 17 00:00:00 2001 From: Adam Rush Date: Fri, 29 Oct 2021 07:47:39 +0100 Subject: [PATCH] Removed extraneous depends_on --- terraform/argocd_sso.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/argocd_sso.tf b/terraform/argocd_sso.tf index 980ec77..1795316 100644 --- a/terraform/argocd_sso.tf +++ b/terraform/argocd_sso.tf @@ -40,6 +40,7 @@ resource "azuread_application" "argocd" { type = "Scope" } + # ? keeping for future reference # # application permissions, type=Role # resource_access { # id = azuread_service_principal.msgraph.app_role_ids["User.Read.All"] @@ -80,7 +81,6 @@ resource "azuread_application_password" "argocd" { application_object_id = azuread_application.argocd.id display_name = "argocd_secret" end_date = "2099-01-01T01:02:03Z" - # depends_on = [azuread_service_principal.argocd] # TODO: is this still required? } data "azurerm_client_config" "current" {}