vars.tf 830 B

1234567891011121314151617181920212223242526272829303132
  1. variable "tags" { type = map }
  2. variable "dns_info" { type = map }
  3. variable "cidr_map" { type = map }
  4. variable "instance_termination_protection" { type = bool }
  5. variable "standard_tags" { type = map }
  6. variable "environment" { type = string }
  7. variable "trusted_ips" { type = list }
  8. variable "aws_region" { type = string }
  9. variable "aws_partition" { type = string }
  10. variable "aws_partition_alias" { type = string }
  11. variable "aws_account_id" { type = string }
  12. variable "common_services_account" { type = string }
  13. variable "proxy" { type = string }
  14. variable "salt_master" { type = string }
  15. variable "instance_name" {
  16. description = "Hostname, DNS entry, etc."
  17. type = string
  18. }
  19. variable "instance_type" {
  20. type = string
  21. default = "t3a.micro"
  22. }
  23. variable "vpc_id" {
  24. type = string
  25. }
  26. variable "subnets" {
  27. type = list(string)
  28. }