Skip to content

Commit 68178b5

Browse files
committed
chore(azurerm-v4): rename deprecated enable_rbac_authorization to rbac_authorization_enabled
1 parent 04ac5d4 commit 68178b5

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

terraform-tutorial/terraform-production-ready-azure/assets/stage/step2/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ resource "azurerm_key_vault" "app" {
223223
sku_name = "standard"
224224
soft_delete_retention_days = 7
225225
purge_protection_enabled = false
226-
enable_rbac_authorization = true
226+
rbac_authorization_enabled = true
227227

228228

229229
tags = {

terraform-tutorial/terraform-production-ready-azure/assets/stage/step3/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ resource "azurerm_key_vault" "app" {
142142
sku_name = "standard"
143143
soft_delete_retention_days = 7
144144
purge_protection_enabled = false
145-
enable_rbac_authorization = true
145+
rbac_authorization_enabled = true
146146

147147

148148
tags = {

terraform-tutorial/terraform-production-ready-azure/assets/stage/step4/modules/security/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ resource "azurerm_key_vault" "app" {
3939
sku_name = "standard"
4040
soft_delete_retention_days = 7
4141
purge_protection_enabled = false
42-
enable_rbac_authorization = true
42+
rbac_authorization_enabled = true
4343

4444

4545
tags = {

terraform-tutorial/terraform-production-ready-azure/assets/workspace/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ resource "azurerm_key_vault" "app" {
496496
sku_name = "standard"
497497
soft_delete_retention_days = 7
498498
purge_protection_enabled = false
499-
enable_rbac_authorization = true
499+
rbac_authorization_enabled = true
500500

501501

502502
tags = {

0 commit comments

Comments
 (0)