35 lines
450 B
HCL
35 lines
450 B
HCL
variable "bucket_name" {
|
|
type = string
|
|
}
|
|
|
|
variable "dynamo_table" {
|
|
type = string
|
|
}
|
|
|
|
variable "prefixes" {
|
|
type = list(string)
|
|
}
|
|
|
|
variable "role_name" {
|
|
type = string
|
|
default = null
|
|
}
|
|
|
|
variable "policy_name" {
|
|
type = string
|
|
default = null
|
|
}
|
|
variable "policy_path" {
|
|
type = string
|
|
default = "/"
|
|
}
|
|
|
|
variable "create_role" {
|
|
type = bool
|
|
default = false
|
|
}
|
|
|
|
variable "create_policy" {
|
|
type = bool
|
|
default = false
|
|
} |