12345678910111213141516171819202122232425262728293031323334353637383940 |
- variable "instance_prefix" {
- type = string
- description = "Prefix for instance names."
- default = "resolver-govcloud"
- }
- variable "instance_number" {
- type = number
- default = 1
- }
- variable "subnet_id" {
- type = string
- }
- variable "vpc_id" {
- type = string
- }
- variable "tags" {
- description = "Tags to add to the resource (in addition to global standard tags)"
- type = map(any)
- default = {}
- }
- variable "instance_tags" {
- description = "Tags for the instance only."
- type = map(string)
- default = {}
- }
- variable "reverse_enabled" {
- description = "Whether to create the reverse DNS entry."
- type = bool
- default = true
- }
- variable "resolver_instance_key_name" {
- type = string
- default = "msoc-build"
- }
|