19 lines
257 B
Terraform
19 lines
257 B
Terraform
|
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 = {}
|
||
|
}
|