21 lines
348 B
Terraform
21 lines
348 B
Terraform
|
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"
|
||
|
}
|