mirror of
https://github.com/MichaelCade/90DaysOfDevOps.git
synced 2025-07-25 07:11:16 +07:00
add new tests for IaC codebase
This commit is contained in:
16
2022/Days/IaC/Terratest/examples/vars.tf
Normal file
16
2022/Days/IaC/Terratest/examples/vars.tf
Normal file
@ -0,0 +1,16 @@
|
||||
variable "AWS_ACCESS_KEY" {
|
||||
}
|
||||
|
||||
variable "AWS_SECRET_KEY" {
|
||||
}
|
||||
|
||||
variable "AWS_REGION" {
|
||||
default = "ap-south-1"
|
||||
}
|
||||
|
||||
variable "AMIS" {
|
||||
type = map(string)
|
||||
default = {
|
||||
ap-south-1 = "ami-0860c9429baba6ad2"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user