More details at #374
This project has dependencies on OAuth authentication.
Note: Guest user scenarios are not supported.
- Clone this repository to your local drive.
- Open
ARMExplorer.sln
with VS 2017+ and compile.
- Go to Azure Portal while logged in as an Org ID (i.e. not MSA) and create AAD Application. You may create an application on existing AAD directory or a new directory altogether.
- Select 'Azure Active Directory' and then 'App registrations' and click 'New application registration'
- Enter any name for application name and
https://localhost:44300/manage
asRedirect URIs
and click 'Register' - Once created, open the application
- On
Authentication
, checkID tokens (used for implicit and hybrid flows)
inImplicit grant and hybrid flows
and save. - On
API permissions
, addWindows Azure Service Management API
and checkAccess Azure Service Management
forDelegated Permissions
and save.
- Copy
CLIENT ID
and paste it in this line, replacingEnvironment.GetEnvironmentVariable("AADClientId")
. - On
Certificates & secrets
section, create a client secret. Copy the key and paste it in the same file, replacingEnvironment.GetEnvironmentVariable("AADClientSecret")
.
Test with localhost
- Build the solution using VS.
- Starting running it in the debugger (F5).
- In browser, it should redirect to login page.
- Enter AAD account and password. Note: try account that is not in the same directly as the application. Note: currently this does not work with MSA account.
- You should be prompt with OAuth allow/deny page, do accept it.
https://localhost:44306/api/token
- show current token details.https://localhost:44306/api/tenants
- show all tenants (AAD directory) user belongs to.- and so on..
- Create Azure Websites with local git publishing enabled
- Add the site https url as the reply URL for AAD application
- Deploy the website by pushing the repository
- Set AADClientID and AADClientSecret appSettings
- To test, simply browse to the website and append the query string "?repository="
- Unit test support is still evolving and the tests are located under ng\test directory.
- Tests are built using tsconfig.json file under ng folder.
- You will need to have tsc and node installed before you can run the tests. You can use npm for this.
- Navigate to ng directory and compile the files using 'tsc' and run the tests using 'node manageWithTests.js'
- Remember to update the tsconfig.json file when adding new test files.
Swagger files can be found at https://github.com/Azure/azure-rest-api-specs. For web apps the specs can be found internally under bin\Hosting\Azure\GeoMaster\Swagger\Service.json
Swagger files for all ARM providers are under App_Data/SwaggerSpecs. To update specs for any provider, locate the folder corresponding to the specific provider under SwaggerSpecs and do the following:
- To update an API in an existing file replace the old file contents with the latest specs.
- To move API to a new file, you will have to delete the old API from the existing file apart from adding the new file(s).
- To delete an API , remove the API from existing files.
- To add new API, copy the new files to the provider folder.
- To add new provider, create a new folder for the provider under SwaggerSpecs and place all your files inside the folder. You might also need to add the provider name at https://github.com/projectkudu/AzureResourceExplorer/blob/master/App_Data/providernames.txt if doesnt already exist.
- When adding new files, make sure you include them in the csproj file. Ex:
AzureResourceExplorer/ARMExplorer.csproj
Line 193 in 526106d
- Note: Some spec files might have dependencies on external files using relative paths. In that case the external files also need to be copied over or the swagger will fail to parse completely. Ex: Swagger referencing external file - https://github.com/projectkudu/AzureResourceExplorer/commit/6ea99ea565ac1f69e20e7eb199c71c7119a58bb6#diff-bc13fca161c67ebe7f92e5965a8db19b10fb7927338a5a86e82e5236650142bdR3071 Fix - https://github.com/projectkudu/AzureResourceExplorer/commit/f038fbda41639362182ff3d2aeafa67eb0cab970
Create a pull request with your changes.