You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: main.tf
+8-3Lines changed: 8 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -16,14 +16,19 @@ locals {
16
16
# tflint-ignore: terraform_unused_declarations
17
17
validate_admins_variables=var.auto_initialization_using_recovery_crypto_units==true? ((length(var.admins) ==0&&length(var.base64_encoded_admins) ==0) || (length(var.admins) !=0&&length(var.base64_encoded_admins) !=0) ?tobool("Please provide exactly one of admins or base64_encoded_admins. Passing neither or both is invalid.") :true) :true
admins_name_map=merge([foradmininvar.base64_encoded_admins: { (admin.name) = { "name" = admin.name } }]...) # map created for non-sensitive value (admin name) only
0 commit comments