Skip to content

Instantly share code, notes, and snippets.

@archmangler
Created November 6, 2018 13:19
Show Gist options
  • Save archmangler/516a97cc382d2c504d7df61bcbb75b8a to your computer and use it in GitHub Desktop.
Save archmangler/516a97cc382d2c504d7df61bcbb75b8a to your computer and use it in GitHub Desktop.
Azure Cloud Discovery Notes

Useful facts and information from a discovery of Azure Cloud

  1. Resource Groups ==================

ref: https://docs.microsoft.com/en-us/azure/azure-resource-manager/resource-group-overview#resource-groups

1.1 Resource Group Properties

  • You can add or remove a resource to a resource group at any time.
  • You can move a resource from one resource group to another group.
  • A resource group can contain resources that reside in different regions.
  • A resource group can be used to scope access control for administrative actions.
  • A resource can interact with resources in other resource groups.
  • The resource group stores metadata about the resources.
  • The resource group location is where the metadata is stored

1.2 Resource Providers

  • A "Resource provider" offers a set of resources and operations for working with an Azure service.
  • For example, if you want to store keys and secrets, work with the Microsoft.KeyVault resource provider.
  • The name of a resource type is in the format: {resource-provider}/{resource-type}.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment