vars.tf 703 B

123456789101112131415161718192021222324252627282930313233343536
  1. # local module inputs
  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_alias" {
  6. type = string
  7. }
  8. variable "iam_additional_trusted_arns" {
  9. description = "Additional ARNs to trust in the roles"
  10. type = list
  11. default = [ ]
  12. }
  13. # ----------------------------------
  14. # Required for remote state, though they can be used elsewhere
  15. variable "remote_state_bucket" {
  16. type = string
  17. }
  18. variable "aws_region" {
  19. type = string
  20. }
  21. variable "aws_partition" {
  22. type = string
  23. }
  24. variable "common_services_account" {
  25. type = string
  26. }
  27. variable "common_profile" {
  28. type = string
  29. }