-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
31 lines (25 loc) · 882 Bytes
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
variable "default_region" {
description = "Default region where we want to create the AWS resources"
default = "us-east-1"
}
variable "bucket_name" {
description = "The S3 bucket for storing the Terraform state files, make sure this is unique to avoid conflicts"
default = "xxxourbucketuniquenameherexxx"
}
variable "dynamodb_table_name" {
description = "The DynamoDB table for Terraform state locking"
default = "dynamodb-tf-state-lock"
}
#Below are all used for resource tagging
variable "environment_name" {
description = "Name of our environment used for tagging"
default = "dev"
}
variable "project_name" {
description = "The name of the project used for tagging"
default = "terraform-aws-remote-state-versioning-locking"
}
variable "owner_name" {
description = "The name of the owner used for tagging"
default = "DevOps"
}