Replies: 1 comment
-
How do you find your tenant administrator? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
If you are unable to obtain the permission at the tenant level described in Azure account requirements then this guide will provide a manual workaround for you.
You can accomplish a deployment in this scenario with some manual steps and code modification...
Here are the details of each step:
Create a random sequence file
Manually create a random string for your environment. This is the ensure unique service names to avoid DNS conflicts.
Have Administrator create two AD App Registrations and Enterprise Applications
An Administrator in the tenant would need to create two Azure AD App Registrations and Service Principals for you manually.
The first AD App Registration will be used to secure the Information Assistant web application and will need to ensure the following settings:
Azure AD App Registration
Azure AD Enterprise Application (optional)
If you desire to have the Information Assistant web site to secured by explicit membership then the following settings will need to be updated:
The second AD App Registration will be used to query the Azure management plane APIs for Azure service details. It needs the following settings:
Azure AD App Registration
You will need to obtain the following information from your tenant Administrator to continue:
Adjust code in infrastructure deployment
In file
scripts/inf-create.sh
between lines 97 - 138, you would need to replace the code with the following sample. Update parameters with values provided by your tenant Administrator.Beta Was this translation helpful? Give feedback.
All reactions