File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff 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
963963Type:
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
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ output "identity" {
2727output "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
3232output "latest_revision_fqdn" {
3333 description = " The FQDN of the latest revision of the Container App."
Original file line number Diff line number Diff 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
882882EOT
883883}
You can’t perform that action at this time.
0 commit comments