Skip to content

Commit 9e8d629

Browse files
committed
fix: variable name
1 parent 16908c1 commit 9e8d629

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -958,7 +958,7 @@ Description:
958958
- `key_vault_secret_id` - (Optional) The URL of the Azure Key Vault containing the secret. Required when `identity` is specified.
959959
- `identity` - (Optional) The identity associated with the secret.
960960
- `name` - (Required) The Secret name.
961-
- `value` - (Required) The value for this secret.
961+
- `value` - (Optional) The value for this secret.
962962

963963
Type:
964964

@@ -967,7 +967,7 @@ map(object({
967967
identity = optional(string)
968968
key_vault_secret_id = optional(string)
969969
name = string
970-
value = string
970+
value = optional(string)
971971
}))
972972
```
973973

outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ output "identity" {
2727
output "latest_ready_revision_name" {
2828
description = "The name of the latest ready revision of the Container App."
2929
value = azapi_resource.container_app.output.properties.latestReadyRevisionName
30-
}
30+
}
3131

3232
output "latest_revision_fqdn" {
3333
description = "The FQDN of the latest revision of the Container App."

variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -869,15 +869,15 @@ variable "secrets" {
869869
identity = optional(string)
870870
key_vault_secret_id = optional(string)
871871
name = string
872-
value = string
872+
value = optional(string)
873873
}))
874874
default = null
875875
description = <<-EOT
876876
877877
- `key_vault_secret_id` - (Optional) The URL of the Azure Key Vault containing the secret. Required when `identity` is specified.
878878
- `identity` - (Optional) The identity associated with the secret.
879879
- `name` - (Required) The Secret name.
880-
- `value` - (Required) The value for this secret.
880+
- `value` - (Optional) The value for this secret.
881881
882882
EOT
883883
}

0 commit comments

Comments
 (0)