-
Notifications
You must be signed in to change notification settings - Fork 55
Feature/azure network redesign #137
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
base: main
Are you sure you want to change the base?
Conversation
Doc changes are pending. Will take out of draft status when finished. |
BREAKING CHANGE: The metastore no longer includes default storage. Spokes must create catalogs in discrete storage accounts.
BREAKING CHANGE: Azure SRA no longer supports creating spokes in a for_each. Each spoke must now be created as a separate module. This ultimately supports creating workspace objects using a provider per workspace.
e2a4b0c
to
95fac1c
Compare
…t accidental deletion
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice changes and refactor! Looks good to me.
@@ -0,0 +1,89 @@ | |||
locals { | |||
create_sat_sp = var.sat_configuration.enabled && var.sat_service_principal.client_id == "" | |||
sat_client_id = local.create_sat_sp ? azuread_service_principal.sat[0].client_id : var.sat_service_principal.client_id |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NIT @connorbrown-db Maybe we should consider renaming the SP so that it's non-exclusive to SAT. Future customizations may leverage the same SP together with the SAT deployment
Bug Fixes
Features
BREAKING CHANGES