File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ module "webapp" {
1717 fetch_secrets_from_app_key_vault = var. fetch_secrets_from_app_key_vault
1818 infra_key_vault_name = " kv-${ var . app_short_name } -${ var . env_config } -inf"
1919 infra_key_vault_rg = " rg-${ var . app_short_name } -${ var . env_config } -infra"
20- enable_auth = var. enable_auth
20+ enable_entra_id_authentication = var. enable_entra_id_authentication
2121 app_key_vault_id = var. app_key_vault_id
2222 docker_image = var. docker_image
2323 user_assigned_identity_ids = var. deploy_database_as_container ? [] : [module . db_connect_identity [0 ]. id ]
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ variable "docker_image" {
3535 type = string
3636}
3737
38- variable "enable_auth " {
38+ variable "enable_entra_id_authentication " {
3939 description = " Enable authentication for the container app. If true, the app will use Azure AD authentication."
4040 type = bool
4141}
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ module "container-apps" {
3636 dns_zone_name = var. dns_zone_name
3737 docker_image = var. docker_image
3838 deploy_database_as_container = var. deploy_database_as_container
39- enable_auth = var. enable_auth
39+ enable_entra_id_authentication = var. enable_entra_id_authentication
4040 environment = var. environment
4141 env_config = var. env_config
4242 features = var. features
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ variable "postgres_storage_tier" {
9797 type = string
9898}
9999
100- variable "enable_auth " {
100+ variable "enable_entra_id_authentication " {
101101 description = " Enable authentication for the container app. If true, the app will use Azure AD authentication."
102102 type = bool
103103 default = false
You can’t perform that action at this time.
0 commit comments