From 830e464e2ed43e0ade5366e412b8bbb0ccc4970f Mon Sep 17 00:00:00 2001 From: averbukh Date: Mon, 26 Jul 2021 09:50:33 +0200 Subject: [PATCH] Update firewall-yaml test fixture --- tests/modules/net_vpc_firewall_yaml/fixture/main.tf | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/tests/modules/net_vpc_firewall_yaml/fixture/main.tf b/tests/modules/net_vpc_firewall_yaml/fixture/main.tf index 7db37c77..4dcc9b7c 100644 --- a/tests/modules/net_vpc_firewall_yaml/fixture/main.tf +++ b/tests/modules/net_vpc_firewall_yaml/fixture/main.tf @@ -15,9 +15,11 @@ */ module "firewall" { - source = "../../../../modules/net-vpc-firewall-yaml" - project_id = "my-project" - network = "my-network" - config_path = "./rules" - log_config = var.log_config + source = "../../../../modules/net-vpc-firewall-yaml" + project_id = "my-project" + network = "my-network" + config_directories = [ + "./rules" + ] + log_config = var.log_config }