2024-03-28 18:38:15 +00:00
|
|
|
# AWS variables
|
|
|
|
variable "aws_region" {
|
|
|
|
default = "us-east-2"
|
|
|
|
description = "The AWS Region"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "name_prefix" {
|
|
|
|
description = "The prefix for all your resources"
|
|
|
|
default = "testing"
|
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "name_suffix" {
|
|
|
|
description = "The suffix for all your resources"
|
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "aws_access_key" {
|
|
|
|
description = "AWS Access Key"
|
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "aws_secret_key" {
|
|
|
|
description = "AWS Secret Key"
|
|
|
|
type = string
|
|
|
|
}
|
2024-03-28 18:46:27 +00:00
|
|
|
variable "tls_key_algorithm" {
|
|
|
|
default = "RSA"
|
|
|
|
type = string
|
2024-03-28 18:49:02 +00:00
|
|
|
}
|
|
|
|
variable "vpc_cidr" {
|
|
|
|
description = "VPC CIDR"
|
|
|
|
default = "10.123.0.0/16"
|
2024-03-28 18:46:27 +00:00
|
|
|
}
|