Alex
Alex

Reputation: 190

Azure: is there a graph tells what resources needed to deploy something?

e.g. to create a storage, I need the following:

resource group --> storage account --> container

to deploy a webapp, I need the following:

resource group --> app service plan -->

You got what I mean. It's good for beginners like me.

Upvotes: 0

Views: 34

Answers (1)

Hugh Lin
Hugh Lin

Reputation: 19491

is there a graph tells what resources needed to deploy something?

For this issue, I am afraid that there is no such graph to tell what resources are needed to deploy something.

If you are using azure devops pipeline to deploy, the tasks will display the settings that you are required to fill in. For example Azure Web App Deploy task:

enter image description here

If you are creating services in azure portal, then you can find the required resources by searching for documents, and the settings you need to fill in will also be displayed on the creation page. For example Create a storage account:

enter image description here

Upvotes: 1

Related Questions