InfrastructureS3ToDynamoDBL.../modules/iam/role/variables.tf

21 lines
348 B
Terraform
Raw Permalink Normal View History

2023-07-11 15:45:59 +00:00
variable "role_name" {
type = string
default = "amdocs-example-role"
}
variable "account_id" {
type = string
default = "123456789012"
}
variable "s3_bucket" {
type = string
default = "amdocs-example-bucket"
}
variable "dynamodb_table_name" {
description = "The name of the table"
type = string
default = "example"
}