Push Project :

- Terraform ⚙️ : Instance creation
- Ansible 🛠️ : ContainerLab installation
This commit is contained in:
Damien A
2023-11-05 17:32:26 +01:00
parent a2484bca4d
commit 78322ee157
7 changed files with 188 additions and 0 deletions

14
terraform/variables.tf Normal file
View File

@@ -0,0 +1,14 @@
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"
}
}