-
Notifications
You must be signed in to change notification settings - Fork 585
New issue
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
Documentation fixes due to missing variable attributes #356
Conversation
Following this page led to a terraform error for a missing "advanced_vpn_settings" attribute, which is a recently added attribute to the variables.tf of the Azure Landing Zone module. Updated settings.connectivity.tf example in this documentation page to include advanced_vpn_settings, as per the default values specified in variables.tf of the module. This resolves the TF error.
Following this page led to a terraform error for a missing "enable_defender_for_containers" attribute. Updated settings.management.tf example in this documentation page to include enable_defender_for_containers , with a value of true. This resolves the TF error.
This looks good to me @jonclyde. Thank you for identifying this and raising the PR to fix. @matt-FFFFFF would you mind giving this the once over to ensure we didn't miss any other Wiki examples and then we can merge. Thank you! |
1 similar comment
This looks good to me @jonclyde. Thank you for identifying this and raising the PR to fix. @matt-FFFFFF would you mind giving this the once over to ensure we didn't miss any other Wiki examples and then we can merge. Thank you! |
Thanks - I will take a look next week |
@matt-FFFFFF: The following lines should also be removed from the security_center settings section since they've been replaced by this new enable_defender_for_containers variable: enable_defender_for_acr = true |
/azp run unit |
Azure Pipelines successfully started running 1 pipeline(s). |
Overview/Summary
Changes to the documentation due to the addition of new variables in the Azure Landing Zone module that were causing terraform to fail at apply stage.
This was the error when following the deploy connectivity resources with custom settings article:
![image](https://user-images.githubusercontent.com/35006633/166304028-fe465676-aec3-4c06-83aa-ab4bb77751d9.png)
Resolved by adding advanced_vpn_settings as per default values in variables.tf of the module.
This was the error when following the deploy management resources with custom settings article:
Resolved by adding enabled_defender_for_containers with a value of true.
This PR fixes/adds/changes/removes
Breaking Changes
Testing Evidence
Apply works for deploying connectivity resources with custom settings:
![image](https://user-images.githubusercontent.com/35006633/166304773-2d8dacfb-a940-415b-8741-43052368118a.png)
Apply works for deploying management resources with custom settings:
![image](https://user-images.githubusercontent.com/35006633/166305115-b340f035-60bc-4641-9bc6-984b548e2887.png)
As part of this Pull Request I have
main
branch/docs/wiki/whats-new.md
)