21 lines
332 B
Terraform
21 lines
332 B
Terraform
variable "customer-name" {}
|
|
variable "default-tags" {}
|
|
variable "cloudtrail-retain-days" {
|
|
type = number
|
|
default = 90
|
|
}
|
|
|
|
variable "create-cloudhealth-resources" {
|
|
type = bool
|
|
default = false
|
|
}
|
|
|
|
variable "cloudheath-ext-id1" {
|
|
type = string
|
|
default = ""
|
|
}
|
|
variable "cloudheath-ext-id2" {
|
|
type = string
|
|
default = ""
|
|
}
|