Skip to content

Commit a23e394

Browse files
Create variables.tf
1 parent b56636f commit a23e394

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

variables.tf

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
variable "aws_region" {
2+
description = "AWS region where resources will be provisioned"
3+
default = "us-east-2"
4+
}
5+
6+
variable "ami_id" {
7+
description = "AMI ID for the EC2 instance"
8+
default = "ami-085f9c64a9b75eed5"
9+
}
10+
11+
variable "instance_type" {
12+
description = "Instance type for the EC2 instance"
13+
default = "t2.micro"
14+
}

0 commit comments

Comments
 (0)