* AWS_R53_ENABLED: Delete unused variable * Add Tailscale Feature - Removed R53 configuration - Updated Ansible playbook to handle empty variables - Updated Ansible playbook to use variables file - Updated README to include updated requirements --------- Co-authored-by: Damien A <sepales.pret0h@icloud.com>
26 lines
429 B
HCL
Executable File
26 lines
429 B
HCL
Executable File
variable "AWS_ACCESS_KEY" {}
|
|
variable "AWS_SECRET_KEY" {}
|
|
variable "AWS_KEY_NAME" {}
|
|
variable "AWS_KEY_LOCATION" {}
|
|
|
|
variable "AWS_LOCAL_IP" {
|
|
type = string
|
|
default = "0.0.0.0/0"
|
|
}
|
|
|
|
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"
|
|
} |