vars.tf 815 B

1234567891011121314151617181920212223242526272829303132333435363738
  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 "test_instance_key_name" {
  21. type = string
  22. default = "msoc-build"
  23. }
  24. variable "create_test_instance" { type = bool }
  25. variable "dns_info" { type = map }
  26. variable "standard_tags" { type = map }
  27. variable "environment" { type = string }
  28. variable "aws_region" { type = string }
  29. variable "aws_partition" { type = string }
  30. variable "aws_partition_alias" { type = string }
  31. variable "common_services_account" { type = string }