vars.tf 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. variable "instance_name" {
  2. description = "Hostname, DNS entry, etc."
  3. type = string
  4. }
  5. variable "azs" {
  6. type = list(string)
  7. }
  8. variable "subnets" {
  9. type = list(string)
  10. }
  11. variable "vpc_id" {
  12. type = string
  13. }
  14. variable "tags" {
  15. description = "Tags to add to the resource (in addition to global standard tags)"
  16. type = map
  17. default = { }
  18. }
  19. variable "instance_tags" {
  20. description = "Tags for the instance only."
  21. type = map(string)
  22. default = { }
  23. }
  24. variable "instance_type" {
  25. type = string
  26. default = "t3a.micro"
  27. }
  28. variable "reverse_enabled" {
  29. description = "Whether to create the reverse DNS entry."
  30. type = bool
  31. default = true
  32. }
  33. variable "trusted_ips" { type = list(string) }
  34. variable "proxy" { type = string }
  35. variable "salt_master" { type = string }
  36. variable "cidr_map" { type = map }
  37. variable "dns_info" { type = map }
  38. variable "standard_tags" { type = map }
  39. variable "environment" { type = string }
  40. variable "aws_region" { type = string }
  41. variable "aws_partition" { type = string }
  42. variable "aws_partition_alias" { type = string }
  43. variable "aws_account_id" { type = string }
  44. variable "common_services_account" { type = string }
  45. variable "instance_termination_protection" { type = bool }