File tree 4 files changed +22
-9
lines changed
4 files changed +22
-9
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ module "comet_ec2" {
28
28
vpc_id = var. enable_vpc ? module. comet_vpc [0 ]. vpc_id : var. comet_vpc_id
29
29
comet_ec2_subnet = var. enable_vpc ? module. comet_vpc [0 ]. public_subnets [0 ] : var. comet_public_subnets [0 ]
30
30
comet_ec2_ami_type = var. comet_ec2_ami_type
31
+ comet_ec2_ami_id = var. comet_ec2_ami_id
31
32
comet_ec2_instance_type = var. comet_ec2_instance_type
32
33
comet_ec2_instance_count = var. comet_ec2_instance_count
33
34
comet_ec2_volume_type = var. comet_ec2_volume_type
Original file line number Diff line number Diff line change @@ -124,14 +124,15 @@ data "aws_ami" "ubuntu22" {
124
124
}
125
125
126
126
resource "aws_instance" "comet_ec2" {
127
- ami = var. comet_ec2_ami_type == " al2" ? data. aws_ami . al2 . id : (
128
- var. comet_ec2_ami_type == " rhel7" ? data. aws_ami . rhel7 . id : (
129
- var. comet_ec2_ami_type == " rhel8" ? data. aws_ami . rhel8 . id : (
130
- var. comet_ec2_ami_type == " rhel9" ? data. aws_ami . rhel9 . id : (
131
- var. comet_ec2_ami_type == " ubuntu18" ? data. aws_ami . ubuntu18 . id : (
132
- var. comet_ec2_ami_type == " ubuntu20" ? data. aws_ami . ubuntu20 . id : (
133
- var. comet_ec2_ami_type == " ubuntu22" ? data. aws_ami . ubuntu22 . id : (
134
- null )))))))
127
+ ami = var. comet_ec2_ami_id != " " ? var. comet_ec2_ami_id : (
128
+ var. comet_ec2_ami_type == " al2" ? data. aws_ami . al2 . id : (
129
+ var. comet_ec2_ami_type == " rhel7" ? data. aws_ami . rhel7 . id : (
130
+ var. comet_ec2_ami_type == " rhel8" ? data. aws_ami . rhel8 . id : (
131
+ var. comet_ec2_ami_type == " rhel9" ? data. aws_ami . rhel9 . id : (
132
+ var. comet_ec2_ami_type == " ubuntu18" ? data. aws_ami . ubuntu18 . id : (
133
+ var. comet_ec2_ami_type == " ubuntu20" ? data. aws_ami . ubuntu20 . id : (
134
+ var. comet_ec2_ami_type == " ubuntu22" ? data. aws_ami . ubuntu22 . id : (
135
+ null ))))))))
135
136
instance_type = var. comet_ec2_instance_type
136
137
key_name = var. comet_ec2_key
137
138
count = var. comet_ec2_instance_count
Original file line number Diff line number Diff line change @@ -30,6 +30,11 @@ variable "comet_ec2_instance_type" {
30
30
type = string
31
31
}
32
32
33
+ variable "comet_ec2_ami_id" {
34
+ description = " AMI ID for the EC2 instance"
35
+ type = string
36
+ }
37
+
33
38
variable "comet_ec2_instance_count" {
34
39
description = " Number of EC2 instances to provision"
35
40
type = number
Original file line number Diff line number Diff line change @@ -89,6 +89,12 @@ variable "comet_ec2_ami_type" {
89
89
}
90
90
}
91
91
92
+ variable "comet_ec2_ami_id" {
93
+ description = " AMI ID for the EC2 instance"
94
+ type = string
95
+ default = " "
96
+ }
97
+
92
98
variable "comet_ec2_instance_type" {
93
99
description = " Instance type for the EC2 instance"
94
100
type = string
@@ -202,7 +208,7 @@ variable "eks_external_dns" {
202
208
variable "eks_external_dns_r53_zones" {
203
209
description = " Route 53 zones for external-dns to have access to"
204
210
type = list (string )
205
- default = [
211
+ default = [
206
212
" arn:aws:route53:::hostedzone/XYZ"
207
213
]
208
214
}
You can’t perform that action at this time.
0 commit comments