13 lines
249 B
Terraform
13 lines
249 B
Terraform
|
|
variable "ami_id" {
|
||
|
|
type = string
|
||
|
|
default = "ami-017fecd1353bcc96e"
|
||
|
|
}
|
||
|
|
variable "ami_key_pair_name" {
|
||
|
|
type=string
|
||
|
|
default = "teraformtest1"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "ami_name" {
|
||
|
|
type = string
|
||
|
|
default = "dumbApplicationServer"
|
||
|
|
}
|