vars.tf 773 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. # ----------------------------------
  13. # Below this line are variables inherited from higher levels, so they
  14. # do not need to be explicitly passed to this module.
  15. variable "create_test_instance" {
  16. type = bool
  17. }
  18. variable "aws_marketplace_ubuntu_owner_id" {
  19. type = string
  20. }
  21. variable "test_instance_key_name" {
  22. type = string
  23. }
  24. variable "dns_info" { type = map }
  25. variable "standard_tags" { type = map }
  26. variable "environment" { type = string }
  27. variable "aws_region" { type = string }
  28. variable "aws_partition" { type = string }