File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ data "aws_cloudformation_export" "web_subnet_b" {
6
6
name = var. cf_export_web_subnet_b
7
7
}
8
8
9
+ data "aws_cloudformation_export" "web_subnet_c" {
10
+ name = var. cf_export_web_subnet_c
11
+ }
12
+
9
13
data "aws_cloudformation_export" "app_sg_id" {
10
14
name = var. cf_export_app_sg_id
11
15
}
Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ module "opensearch" {
48
48
vpc_endpoint_subnet_ids = [
49
49
data . aws_cloudformation_export . web_subnet_a . value ,
50
50
data . aws_cloudformation_export . web_subnet_b . value ,
51
+ data . aws_cloudformation_export . web_subnet_c . value ,
51
52
]
52
53
vpc_endpoint_security_group_ids = [
53
54
data . aws_cloudformation_export . app_sg_id . value ,
Original file line number Diff line number Diff line change @@ -34,6 +34,12 @@ variable "cf_export_web_subnet_b" {
34
34
default = " subnetIDWebB-ap-southeast-1"
35
35
}
36
36
37
+ variable "cf_export_web_subnet_c" {
38
+ description = " cf_export_web_subnet_c"
39
+ type = string
40
+ default = " subnetIDWebC-ap-southeast-1"
41
+ }
42
+
37
43
variable "cf_export_app_sg_id" {
38
44
description = " app security group id"
39
45
type = string
You can’t perform that action at this time.
0 commit comments