@@ -10,6 +10,7 @@ variable "associate_public_ip_address" {
1010 description = " Add a public IP address"
1111 default = false
1212}
13+
1314variable "desired_capacity" {
1415 description = " Desired number of instances"
1516 default = 1
@@ -19,52 +20,64 @@ variable "health_check_grace_period" {
1920 description = " Auto Scaling Group health check grace period in seconds. Time allowed before starting to test the health check"
2021 default = " 300"
2122}
23+
2224variable "health_check_type" {
2325 description = " Healthcheck type"
24- default = " ELB"
26+ default = " ELB"
2527}
28+
2629variable "instance_profile_id" {
2730 description = " Instance profile ID"
2831 default = " "
2932}
33+
3034variable "instance_type" {
3135 description = " Instance type"
3236 default = " t2.micro"
3337}
38+
3439variable "key_name" {
3540 description = " SSH key name to use"
3641 default = " devops20170606"
3742}
43+
3844variable "max_size" {
3945 description = " Maximum number of instances"
4046 default = 2
4147}
48+
4249variable "min_size" {
4350 description = " Minimum number of instances"
4451 default = 1
4552}
53+
4654variable "root_volume_size" {
4755 description = " Size of the root volume"
4856 default = 8
4957}
58+
5059variable "spot_price" {
5160 description = " Spot price. Set to false to not use spot pricing"
5261 default = false
5362}
63+
5464variable "stack" {
5565 description = " Name of the service stack"
5666 default = " wrapper-test"
5767}
68+
5869variable "tags" {
5970 description = " Map of tags"
6071 type = " map"
6172 default = {}
6273}
74+
6375variable "target_group_arns" {
6476 description = " List of target group ARNs"
6577 type = " list"
6678 default = []
6779}
80+
6881variable "user_data" {
6982 description = " User data script"
7083 default = " "
0 commit comments