File tree 2 files changed +2
-14
lines changed
2 files changed +2
-14
lines changed Original file line number Diff line number Diff line change @@ -4,18 +4,6 @@ data "aws_caller_identity" "current" {
4
4
data "aws_region" "current" {
5
5
}
6
6
7
- data "aws_cloudformation_export" "vpc" {
8
- name = var. cf_export_vpc
9
- }
10
-
11
- data "aws_cloudformation_export" "pub_subnet_a" {
12
- name = var. cf_export_pub_subnet_a
13
- }
14
-
15
- data "aws_cloudformation_export" "pub_subnet_b" {
16
- name = var. cf_export_pub_subnet_b
17
- }
18
-
19
7
data "aws_cloudformation_export" "web_subnet_a" {
20
8
name = var. cf_export_web_subnet_a
21
9
}
Original file line number Diff line number Diff line change @@ -124,8 +124,8 @@ resource "aws_opensearch_domain" "this" {
124
124
dynamic "window_start_time" {
125
125
for_each = var. enable_off_peak_window_options ? [1 ] : []
126
126
content {
127
- hours = lookup ( var. off_peak_window_options , " hours" )
128
- minutes = lookup ( var. off_peak_window_options , " minutes" )
127
+ hours = var. off_peak_window_options [ " hours" ]
128
+ minutes = var. off_peak_window_options [ " minutes" ]
129
129
}
130
130
}
131
131
}
You can’t perform that action at this time.
0 commit comments