We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I'm trying to use firewall module with example. But when I try terraform plan I have the following error :
firewall
terraform plan
Error: "allow": only one of `allow,deny` can be specified, but `allow,deny` were specified.
I think we have conflict with the dynamic blocks :
dynamic
dynamic "allow" { for_each = [for rule in each.value.rules : rule if each.value.action == "allow"] iterator = rule content { protocol = rule.value.protocol ports = rule.value.ports } } dynamic "deny" { for_each = [for rule in each.value.rules : rule if each.value.action == "deny"] iterator = rule content { protocol = rule.value.protocol ports = rule.value.ports } }
The text was updated successfully, but these errors were encountered:
Issue --> hashicorp/terraform-plugin-sdk#280
Sorry, something went wrong.
If you upgrade to using the 3.3.0 Terraform provider, this should be fixed - https://github.com/terraform-providers/terraform-provider-google/blob/master/CHANGELOG.md#330-december-17-2019
See hashicorp/terraform-provider-google#5024.
No branches or pull requests
Hello,
I'm trying to use
firewall
module with example. But when I tryterraform plan
I have the following error :I think we have conflict with the
dynamic
blocks :The text was updated successfully, but these errors were encountered: