vars.tf 786 B

12345678910111213141516171819202122232425262728293031323334
  1. variable "subnet_id" {
  2. type = string
  3. }
  4. variable "security_group_ids" {
  5. type = list
  6. }
  7. variable "tags" {
  8. description = "Tags to add to the resource (in addition to global standard tags)"
  9. type = map
  10. default = { }
  11. }
  12. variable "test_instance_ami" {
  13. type = string
  14. default = "minion"
  15. }
  16. variable "test_instance_type" {
  17. type = string
  18. default = "t3a.micro"
  19. }
  20. variable "create_test_instance" { type = bool }
  21. variable "test_instance_key_name" { type = string }
  22. variable "dns_info" { type = map }
  23. variable "standard_tags" { type = map }
  24. variable "environment" { type = string }
  25. variable "aws_region" { type = string }
  26. variable "aws_partition" { type = string }
  27. variable "aws_partition_alias" { type = string }
  28. variable "common_services_account" { type = string }