Skip to content

Commit 318daf7

Browse files
Update main.tf
Removing management for edge_security_dictionary_items
1 parent ecadaeb commit 318daf7

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

ngwaf-terraform-edge-deploy/main.tf

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -116,17 +116,6 @@ resource "fastly_service_vcl" "frontend-vcl-service" {
116116
force_destroy = true
117117
}
118118

119-
resource "fastly_service_dictionary_items" "edge_security_dictionary_items" {
120-
for_each = {
121-
for d in fastly_service_vcl.frontend-vcl-service.dictionary : d.name => d if d.name == "Edge_Security"
122-
}
123-
service_id = fastly_service_vcl.frontend-vcl-service.id
124-
dictionary_id = each.value.dictionary_id
125-
items = {
126-
Enabled : "100"
127-
}
128-
}
129-
130119
resource "fastly_service_dynamic_snippet_content" "ngwaf_config_init" {
131120
for_each = {
132121
for d in fastly_service_vcl.frontend-vcl-service.dynamicsnippet : d.name => d if d.name == "ngwaf_config_init"
@@ -204,7 +193,6 @@ resource "sigsci_edge_deployment_service" "ngwaf_edge_service_link" {
204193
depends_on = [
205194
sigsci_edge_deployment.ngwaf_edge_site_service,
206195
fastly_service_vcl.frontend-vcl-service,
207-
fastly_service_dictionary_items.edge_security_dictionary_items,
208196
fastly_service_dynamic_snippet_content.ngwaf_config_init,
209197
fastly_service_dynamic_snippet_content.ngwaf_config_miss,
210198
fastly_service_dynamic_snippet_content.ngwaf_config_pass,

0 commit comments

Comments
 (0)