v4.0.0
·
493 commits
to main
since this release
4.0.0 (2023-05-30)
Features
BREAKING CHANGES
- All patterns will now utilize the
clean_default_security_groupandclean_default_aclvariables added toterraform-ibm-landing-zone-vpcin v7.1.0, which if set to "true" will remove all rules from the default security groups and ACLs created automatically when new VPCs are deployed.
All patterns will now set both variables to "true" by default for all VPCs, and you can override these values for each VPC when using the "override.json" file. Please reference the example override.json files in each pattern for examples. The new settings will look like the following:
"vpcs": [
{
"default_security_group_rules": [],
"clean_default_security_group": true,
"clean_default_acl": true,Since the default security group and ACL for a VPC are created with very permissive rules, setting these values to "true" to remove those rules will increase the overall security posture of the deployment.