Files
AWS-ContainerLab-Deployment/terraform/variables.tf
Damien A 78322ee157 Push Project :
- Terraform ⚙️ : Instance creation
- Ansible 🛠️ : ContainerLab installation
2023-11-05 17:32:26 +01:00

14 lines
230 B
HCL

variable "AWS_ACCESS_KEY" {}
variable "AWS_SECRET_KEY" {}
variable "AWS_REGION" {
type = string
default = "eu-west-3"
}
variable "AWS_AMIS" {
type = map(any)
default = {
"eu-west-3" = "ami-087da76081e7685da"
}
}