InfrastructureS3ToDynamoDBL.../modules/s3/variables.tf

19 lines
257 B
Terraform
Raw Normal View History

2023-07-11 15:45:59 +00:00
variable "s3_bucket" {
type = string
default = "amdocs-example-project"
}
variable "environment" {
type = string
default = "dev"
}
variable "project" {
type = string
default = "amdocs-example"
}
variable "tags" {
type = map
default = {}
}