Skip to content

Commit 7bfd4bd

Browse files
author
Sean Sundberg
authored
Disables default acl setup logic (#43)
Signed-off-by: Sean Sundberg <[email protected]>
1 parent b2b376d commit 7bfd4bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ resource ibm_is_vpc_address_prefix cidr_prefix {
4444

4545
resource null_resource setup_default_acl {
4646
depends_on = [ibm_is_vpc.vpc]
47-
count = var.provision ? 1 : 0
47+
count = false && var.provision ? 1 : 0
4848

4949
provisioner "local-exec" {
5050
command = "${path.module}/scripts/setup-default-acl.sh ${data.ibm_is_vpc.vpc.default_network_acl} ${var.region} ${var.resource_group_name}"

0 commit comments

Comments
 (0)