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
Description: Key Vault ID to store the generated admin password or admin SSH private key. Required when admin\_password or admin\_ssh\_public\_key is not set. Must not be set if either admin\_password or admin\_ssh\_public\_key is set.
602
+
Description: The resource ID of the Azure Key Vault where the generated admin password or SSH private key should be stored as a secret.
603
+
604
+
- Required when `store_secret_in_key_vault` is `true`.
605
+
- Must be `null` when `store_secret_in_key_vault` is `false`.
Copy file name to clipboardExpand all lines: variables.tf
+22-14Lines changed: 22 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -454,18 +454,20 @@ variable "image" {
454
454
}
455
455
456
456
variable"key_vault_id" {
457
-
description="Key Vault ID to store the generated admin password or admin SSH private key. Required when admin_password or admin_ssh_public_key is not set. Must not be set if either admin_password or admin_ssh_public_key is set."
458
-
default=null
459
-
type=string
457
+
description=<<-EOT
458
+
The resource ID of the Azure Key Vault where the generated admin password or SSH private key should be stored as a secret.
459
+
460
+
- Required when `store_secret_in_key_vault` is `true`.
461
+
- Must be `null` when `store_secret_in_key_vault` is `false`.
# error_message = "Invalid combination of key_vault_id, admin_password, and admin_ssh_public_key. If key_vault_id is null, admin_password or admin_ssh_public_key must be non-null. If key_vault_id is not null, admin_password and admin_ssh_public_key must be null."
0 commit comments