1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- # No local module inputs (yet)
- variable "name" {
- description = "Name of the S3 bucket."
- type = string
- }
- variable "tags" {
- description = "Tags for the bucket and kms key."
- type = map
- }
- # ----------------------------------
- # Below this line are variables inherited from higher levels, so they
- # do not need to be explicitly passed to this module.
- variable "standard_tags" {
- type = map
- }
- variable "aws_account_id" {
- type = string
- }
- variable "account_list" {
- type = list
- }
- # ----------------------------------
- # Required for remote state, though they can be used elsewhere
- variable "remote_state_bucket" {
- type = string
- }
- variable "aws_region" {
- type = string
- }
- variable "aws_partition" {
- type = string
- }
- variable "common_services_account" {
- type = string
- }
- variable "common_profile" {
- type = string
- }
|