Skip to content
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

Docs: Amba documentation disclaimer and fix links in Accelerator (#781) #1

Merged
merged 1 commit into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions infra-as-code/bicep/modules/logging/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,11 @@ az deployment group create --name ${NAME:0:63} --resource-group $GROUP --templat

```powershell
# For Azure Global regions
# Set Platform management subscripion ID as the the current subscription
$ManagementSubscriptionId = "[your platform management subscription ID]"
# Set Platform management subscription ID as the the current subscription
$ManagementSubscriptionId = "8c816276-e9fb-43ee-8562-5d1d3d646968"

# Set the top level MG Prefix in accordance to your environment. This example assumes default 'alz'.
$TopLevelMGPrefix = "alz"
$TopLevelMGPrefix = "CustomerDemo"

# Parameters necessary for deployment
$inputObject = @{
Expand All @@ -111,7 +111,7 @@ Select-AzSubscription -SubscriptionId $ManagementSubscriptionId
# Create Resource Group - optional when using an existing resource group
New-AzResourceGroup `
-Name $inputObject.ResourceGroupName `
-Location eastus
-Location 'centralus'

New-AzResourceGroupDeployment @inputObject
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"value": "alz-log-analytics"
},
"parLogAnalyticsWorkspaceLocation": {
"value": "eastus"
"value": "CentralUS"
},
"parLogAnalyticsWorkspaceSkuName": {
"value": "PerGB2018"
Expand Down Expand Up @@ -38,7 +38,7 @@
"value": "alz-automation-account"
},
"parAutomationAccountLocation": {
"value": "eastus2"
"value": "CentralUS"
},
"parAutomationAccountUseManagedIdentity": {
"value": true
Expand Down
10 changes: 5 additions & 5 deletions infra-as-code/bicep/modules/policy/assignments/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ az deployment mg create --name ${NAME:0:63} --location $LOCATION --management-gr

$inputObject = @{
DeploymentName = 'alz-PolicyDenyAssignments-{0}' -f (-join (Get-Date -Format 'yyyyMMddTHHMMssffffZ')[0..63])
ManagementGroupId = 'alz-landingzones'
Location = 'eastus'
ManagementGroupId = 'landing_zones'
Location = 'centralUS'
TemplateParameterFile = 'infra-as-code/bicep/modules/policy/assignments/parameters/policyAssignmentManagementGroup.deny.parameters.all.json'
TemplateFile = "infra-as-code/bicep/modules/policy/assignments/policyAssignmentManagementGroup.bicep"
}
Expand Down Expand Up @@ -128,10 +128,10 @@ az deployment mg create --name $NAME --location $LOCATION --management-group-id

$inputObject = @{
DeploymentName = 'alz-PolicyDineAssignments-{0}' -f (-join (Get-Date -Format 'yyyyMMddTHHMMssffffZ')[0..63])
Location = 'eastus'
ManagementGroupId = 'alz-landingzones'
ManagementGroupId = 'landing_zones'
Location = 'centralUS'
TemplateFile = "infra-as-code/bicep/modules/policy/assignments/policyAssignmentManagementGroup.bicep"
TemplateParameterFile = '@infra-as-code/bicep/modules/policy/assignments/parameters/policyAssignmentManagementGroup.dine.parameters.all.json'
TemplateParameterFile = "infra-as-code/bicep/modules/policy/assignments/parameters/policyAssignmentManagementGroup.dine.parameters.all.json"
}

New-AzManagementGroupDeployment @inputObject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
"value": "security_contact@replace_me"
},
"logAnalytics": {
"value": "alz-la"
"value": "alz-log-analytics"
},
"ascExportResourceGroupName": {
"value": "alz-asc-export"
"value": "alz-mdfc-export"
},
"ascExportResourceGroupLocation": {
"value": "${parDefaultRegion}"
Expand Down
4 changes: 2 additions & 2 deletions infra-as-code/bicep/modules/policy/definitions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ az deployment mg create --name ${NAME:0:63} --location $LOCATION --management-gr

$inputObject = @{
DeploymentName = 'alz-PolicyDefsDeployment-{0}' -f (-join (Get-Date -Format 'yyyyMMddTHHMMssffffZ')[0..63])
Location = 'eastus'
ManagementGroupId = 'alz'
Location = 'centralUS'
ManagementGroupId = 'customerdemo'
TemplateFile = "infra-as-code/bicep/modules/policy/definitions/customPolicyDefinitions.bicep"
TemplateParameterFile = 'infra-as-code/bicep/modules/policy/definitions/parameters/customPolicyDefinitions.parameters.all.json'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"contentVersion": "1.0.0.0",
"parameters": {
"parTargetManagementGroupId": {
"value": "alz"
"value": "customerdemo"
},
"parTelemetryOptOut": {
"value": false
}
}
}
}