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
There seems to be a typo in the factory.tf file of the vpc-sc module.
Starting line 67 :
ingress_policies = { for k, v in local._data.ingress_policies : k => { from = merge({ access_levels = [] identity_type = null identities = null resources = [] }, try(v.from, {})) to = { operations = [ for o in try(v.operations, []) : merge({ method_selectors = [] permission_selectors = [] service_name = null }, o) ] resources = try(v.to.resources, []) } } }
The operations parameter is looping on v.operations instead of v.to.operations This results in the service filters not to be applied on the policies.
The text was updated successfully, but these errors were encountered:
Great find, I had fixed it at a customer and forgot to bring back the change here. Will send a PR shortly, thanks for flagging.
Sorry, something went wrong.
ludoo
Successfully merging a pull request may close this issue.
There seems to be a typo in the factory.tf file of the vpc-sc module.
Starting line 67 :
The operations parameter is looping on v.operations instead of v.to.operations
This results in the service filters not to be applied on the policies.
The text was updated successfully, but these errors were encountered: