Skip to main content
variables.tf246 B
View on GitHub
variable "pet" {
description = "The type of instance to include in the PetSet"
type = string
default = "dog"
}

variable "size" {
description = "The number of pet instances to create"
type = number
default = 3
}

Related Documentation