vars.tf 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. variable "accept_tgw_invitation" {
  2. description = "Whether to accept the transit gateway sharing invitation. Only done once per account."
  3. type = bool
  4. }
  5. variable "tgw_id" {
  6. description = "Transit Gateway ID"
  7. type = string
  8. }
  9. variable "enable_nat_gateway" {
  10. description = "Whether to add a NAT gateway to the VPC"
  11. type = bool
  12. default = false
  13. }
  14. variable "tgw_share_arn" {
  15. description = "The ARN of the share to accept."
  16. type = string
  17. default = ""
  18. }
  19. variable "vpc_info" {
  20. description = "A map of information about the VPC to create. Must contain `name` and `cidr`."
  21. type = map
  22. }
  23. variable "tags" {
  24. description = "Tags to add to the resource (in addition to global standard tags)"
  25. type = map
  26. default = { }
  27. }
  28. # Inherited
  29. variable "account_name" { type = string }
  30. variable "trusted_ips" { type = list(string) }
  31. variable "dns_servers" { type = list(string) }
  32. variable "dns_info" { type = map }
  33. variable "cidr_map" { type = map }
  34. variable "standard_tags" { type = map }
  35. variable "aws_region" { type = string }
  36. variable "aws_account_id" { type = string }
  37. variable "aws_partition" { type = string }