vars.tf 581 B

123456789101112131415161718192021222324252627282930
  1. # No local module inputs (yet)
  2. # ----------------------------------
  3. # Below this line are variables inherited from higher levels, so they
  4. # do not need to be explicitly passed to this module.
  5. variable "account_name" {
  6. type = string
  7. }
  8. # ----------------------------------
  9. # Required for remote state, though they can be used elsewhere
  10. variable "remote_state_bucket" {
  11. type = string
  12. }
  13. variable "aws_region" {
  14. type = string
  15. }
  16. variable "aws_partition" {
  17. type = string
  18. }
  19. variable "common_services_account" {
  20. type = string
  21. }
  22. variable "common_profile" {
  23. type = string
  24. }