14 lines
196 B
HCL
14 lines
196 B
HCL
# Input variable definitions
|
|
|
|
variable "bucket_name" {
|
|
description = "Name of bucket"
|
|
type = string
|
|
}
|
|
|
|
variable "env" {
|
|
description = "Environment like dev, prod"
|
|
type = string
|
|
}
|
|
|
|
|