Skip to content

Commit 100e31b

Browse files
committed
Rename infra enable_auth to enable_entra_id_authentication
1 parent 6352bd1 commit 100e31b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

infrastructure/modules/container-apps/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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]

infrastructure/modules/container-apps/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

infrastructure/terraform/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

infrastructure/terraform/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)