vars.tf 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  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 "tgw_share_arn" {
  10. description = "The ARN of the share to accept."
  11. type = string
  12. default = ""
  13. }
  14. variable "vpc_info" {
  15. description = "A map of information about the VPC to create. Must contain `name` and `cidr`."
  16. type = map
  17. }
  18. variable "tags" {
  19. description = "Tags to add to the resource (in addition to global standard tags)"
  20. type = map
  21. default = { }
  22. }
  23. # Inherited
  24. variable "account_name" { type = string }
  25. variable "trusted_ips" { type = list(string) }
  26. variable "dns_servers" { type = list(string) }
  27. variable "dns_info" { type = map }
  28. variable "cidr_map" { type = map }
  29. variable "standard_tags" { type = map }
  30. variable "aws_region" { type = string }
  31. variable "aws_account_id" { type = string }
  32. variable "aws_partition" { type = string }