Skip to content

Instantly share code, notes, and snippets.

@cromyhector
Created June 14, 2022 04:44
Show Gist options
  • Save cromyhector/cdd3d3f6330032b7af29c8b8744431ff to your computer and use it in GitHub Desktop.
Save cromyhector/cdd3d3f6330032b7af29c8b8744431ff to your computer and use it in GitHub Desktop.
### dynamodb/variables.tf
variable "aws_region" {
description = "The region where the instance will be deployed to"
type = string
default = "us-east-1"
}
variable "table_name" {
description = "Dynamodb table name"
type = string
default = "sneakers_table"
}
variable "environment_name" {
description = "Name of environment"
default = "Sneaker_test"
}
variable "environment_type" {
description = "Type of environment"
default = "test"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment