Spaces:
Runtime error
Runtime error
File size: 408 Bytes
b6f0f70 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# Secret Project ID
variable "secret_project_id" {
type = string
description = "Secret Project ID <type: String>"
}
# Secret ID
variable "secret_id" {
type = string
default = "secret-aBcDeFg"
description = "Secret ID <type: String>"
}
# Secret Data (SENSITIVE)
variable "secret_data" {
type = string
sensitive = true
description = "Secret Data (SENSITIVE) <type: String>"
}
|