Skip to content

Instantly share code, notes, and snippets.

@riosengineer
Last active January 8, 2024 12:33
Show Gist options
  • Save riosengineer/93fb0c1709353f2db4ccf70f6c717718 to your computer and use it in GitHub Desktop.
Save riosengineer/93fb0c1709353f2db4ccf70f6c717718 to your computer and use it in GitHub Desktop.
Azure Lighthouse Params Example (ARM)
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"mspOfferName": {
"value": "Contoso Cloud Services"
},
"mspOfferDescription": {
"value": "Contoso Managed Services"
},
"managedByTenantId": {
"value": "00000000-0000-0000-0000-000000000000"
},
"authorizations": {
"value": [
{
"principalId": "00000000-0000-0000-0000-000000000000",
"roleDefinitionId": "acdd72a7-3385-48ef-bd42-f606fba81ae7",
"principalIdDisplayName": "Lighthouse Readers"
},
{
"principalId": "00000000-0000-0000-0000-000000000000",
"roleDefinitionId": "cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e6",
"principalIdDisplayName": "Support Request Contributor"
}
]
},
"eligibleAuthorizations": {
"value": [
{
"justInTimeAccessPolicy": {
"multiFactorAuthProvider": "Azure",
"maximumActivationDuration": "PT1H"
},
"principalId": "00000000-0000-0000-0000-000000000000",
"principalIdDisplayName": "Lighthouse Managed Services Registration Assignment Delete",
"roleDefinitionId": "91c1777a-f3dc-4fae-b103-61d183457e46"
},
{
"justInTimeAccessPolicy": {
"multiFactorAuthProvider": "Azure",
"maximumActivationDuration": "PT1H"
},
"principalId": "00000000-0000-0000-0000-000000000000",
"principalIdDisplayName": "Lighthouse Contributor",
"roleDefinitionId": "b24988ac-6180-42a0-ab88-20f7382dd24c"
},
{
"justInTimeAccessPolicy": {
"multiFactorAuthProvider": "Azure",
"maximumActivationDuration": "PT2H"
},
"principalId": "00000000-0000-0000-0000-000000000000",
"principalIdDisplayName": "Lighthouse VM Contributor",
"roleDefinitionId": "9980e02c-c2be-4d73-94e8-173b1dc7cf3c"
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment