Files
AWS-ContainerLab-Deployment/terraform/variables.tf
Damien A 22072de929 DNS Configuration Conditioning :
- Add AWS_R53_ENABLED variable
- Update Documentation
- Add ToDo
2024-01-02 19:32:23 +01:00

36 lines
587 B
HCL
Executable File

variable "AWS_ACCESS_KEY" {}
variable "AWS_SECRET_KEY" {}
variable "AWS_KEY_NAME" {}
variable "AWS_KEY_LOCATION" {}
variable "AWS_R53_ZONE_ID" {}
variable "AWS_R53_ENABLED" {
type = bool
default = false
}
variable "GITHUB_REPO_URL" {
type = string
default = ""
}
variable "LOCAL_DIR_PATH" {
type = string
default = ""
}
variable "AWS_REGION" {
type = string
default = "eu-west-3"
}
variable "AWS_AMI" {
type = map(any)
default = {
"eu-west-3" = "ami-087da76081e7685da"
}
}
variable "INSTANCE_TYPE" {
type = string
default = "t2.xlarge"
}