Skip to content

Commit 8f72a35

Browse files
committed
Update variable defaults
1 parent a5d5d53 commit 8f72a35

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

variables.tf

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
variable "ami_id" {
22
description = "AMI to use for the instance"
33
type = string
4+
default = "ami-0addfae420fd47aab"
45
}
56

67
variable "instance_type" {
@@ -11,13 +12,11 @@ variable "instance_type" {
1112
variable "instance_count" {
1213
description = "Number of instances to provision"
1314
type = number
14-
default = 1
1515
}
1616

1717
variable "vpc_security_group_ids" {
1818
description = "List of security group IDs to associate"
1919
type = list(string)
20-
default = []
2120
}
2221

2322
variable "subnet_id" {

0 commit comments

Comments
 (0)