vars.tf 831 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # No local module inputs (yet)
  2. variable "name" {
  3. description = "Name of the S3 bucket."
  4. type = string
  5. }
  6. variable "tags" {
  7. description = "Tags for the bucket and kms key."
  8. type = map
  9. }
  10. # ----------------------------------
  11. # Below this line are variables inherited from higher levels, so they
  12. # do not need to be explicitly passed to this module.
  13. variable "standard_tags" {
  14. type = map
  15. }
  16. variable "aws_account_id" {
  17. type = string
  18. }
  19. variable "account_list" {
  20. type = list
  21. }
  22. # ----------------------------------
  23. # Required for remote state, though they can be used elsewhere
  24. variable "remote_state_bucket" {
  25. type = string
  26. }
  27. variable "aws_region" {
  28. type = string
  29. }
  30. variable "aws_partition" {
  31. type = string
  32. }
  33. variable "common_services_account" {
  34. type = string
  35. }
  36. variable "common_profile" {
  37. type = string
  38. }