You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tf-module/ds_img_to_ecr/variables.tf
+34Lines changed: 34 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -23,4 +23,38 @@ variable "ecr_repo_name" {
23
23
description="The name of the ECR repository"
24
24
default="unity-data-services"
25
25
type=string
26
+
}
27
+
28
+
variable"ami_id" {
29
+
description="The AMI ID for the EC2 instance"
30
+
type=string
31
+
}
32
+
33
+
variable"instance_type" {
34
+
description="The type of EC2 instance"
35
+
default="t3.medium"
36
+
type=string
37
+
}
38
+
39
+
variable"key_name" {
40
+
description="The name of the SSH key pair"
41
+
type=string
42
+
}
43
+
44
+
variable"ec2_profile_iam_name" {
45
+
description="EC2 Profile IAM name. Note that it is different from uds-sbx-cumulus_ecs_cluster_instance_role. uds-sbx-cumulus_ecs_cluster_profile is the correct name"
46
+
type=string
47
+
}
48
+
49
+
variable"security_group_id" {
50
+
description="Security Group ID which is setup for ssh connections, https connections, and so on.. "
51
+
type=list(string)
52
+
}
53
+
variable"cumulus_lambda_vpc_id" {
54
+
description="VPC ID."
55
+
type=string
56
+
}
57
+
variable"cumulus_subnet_id" {
58
+
description="subnet group ID where a new EC2 will be placed"
0 commit comments