mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-08 23:23:59 -06:00
c6beaa7ce8
Signed-off-by: Valentin Pichard <valentin.pichard@corp.ovh.com>
17 lines
327 B
HCL
17 lines
327 B
HCL
variable "aws_region" {
|
|
description = "The AWS region to create things in."
|
|
default = "us-east-1"
|
|
}
|
|
|
|
# ubuntu-trusty-14.04 (x64)
|
|
variable "aws_amis" {
|
|
default = {
|
|
"us-east-1" = "ami-5f709f34"
|
|
"us-west-2" = "ami-7f675e4f"
|
|
}
|
|
}
|
|
|
|
variable "key_name" {
|
|
description = "Name of the SSH keypair to use in AWS."
|
|
}
|