You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So that policy assignment doesn't fail if it's not supported in my cloud.
Description
Today, policy assignment in the Terraform implementation is defaulted to true. This differs from our Bicep implementation where policy assignment is opt-in and defaulted to no policy '':
'IL5'// Gov cloud only, trying to deploy IL5 in AzureCloud will switch to NIST
'CMMC'
''
])
@description('Built-in policy assignments to assign, default is none. [NIST/IL5/CMMC] IL5 is only availalbe for GOV cloud and will switch to NIST if tried in AzureCloud.')
parampolicystring = ''
Acceptance Criteria
The Terraform implementation of MLZ has policy assignment as an opt-in option
The text was updated successfully, but these errors were encountered:
glennmusa
changed the title
[Terraform] Update policy assignment to be opt-in and check some allow-list before deployment
[Terraform] Update policy assignment to be opt-in
Oct 14, 2021
Benefit/Result/Outcome
So that policy assignment doesn't fail if it's not supported in my cloud.
Description
Today, policy assignment in the Terraform implementation is defaulted to
true
. This differs from our Bicep implementation where policy assignment is opt-in and defaulted to no policy''
:Terraform defaulted to
true
:missionlz/src/terraform/mlz/variables.tf
Lines 296 to 300 in f0e588d
Bicep defaulted to none
''
:missionlz/src/bicep/mlz.bicep
Lines 545 to 552 in f0e588d
Acceptance Criteria
The text was updated successfully, but these errors were encountered: