Skip to content

Commit ada6eaf

Browse files
committed
bug fix
1 parent 8c15218 commit ada6eaf

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

terraform-aws-iam/variables.tf

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
variable "access_key" {}
2-
variable "secret_key" {}
3-
41
variable "region" {
52
default = "us-east-1"
63
}
@@ -13,3 +10,13 @@ variable "ami_id" {
1310
eu-central-1 = "ami-9787h5h6nsn75gd33"
1411
}
1512
}
13+
14+
variable "key_name" {
15+
type = "string"
16+
default = "ec2-demo"
17+
}
18+
19+
variable "instance_type" {
20+
type = "string"
21+
default = "t2.micro"
22+
}

0 commit comments

Comments
 (0)