vars.tf 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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 "standard_tags" {
  19. type = map
  20. }
  21. variable "inside_domain" {
  22. type = string
  23. }
  24. variable "environment" {
  25. type = string
  26. }
  27. variable "aws_marketplace_ubuntu_owner_id" {
  28. type = string
  29. }
  30. variable "test_instance_key_name" {
  31. type = string
  32. }
  33. # ----------------------------------
  34. # Required for remote state, though they can be used elsewhere
  35. variable "remote_state_bucket" {
  36. type = string
  37. }
  38. variable "aws_region" {
  39. type = string
  40. }
  41. variable "aws_partition" {
  42. type = string
  43. }
  44. variable "common_services_account" {
  45. type = string
  46. }
  47. variable "common_profile" {
  48. type = string
  49. }