Skip to content

Fix schema errors in markdown files #4878

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 30, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ The **New-AzureRmResource** cmdlet creates an Azure resource, such as a website,
```
PS> New-AzureRmResource -Location "West US" -Properties @{test="test"} -ResourceName TestSite06 -ResourceType microsoft.web/sites -ResourceGroupName ResourceGroup11 -Force
```
or

This command creates a resource that is a website in ResourceGroup11.

### Example 2: Create a resource using splatting
```
PS> $prop = @{
Location = "West US"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,19 @@ Azure resource group is a collection of Azure resources that are deployed as a u
```
PS> New-AzureRmResourceGroup -Name RG01 -Location "South Central US"
```
or
```
PS> New-AzureRmResourceGroup RG01 "South Central US"
```

This command creates a resource group that has no resources. You can use the
**New-AzureRmResource** or **New-AzureRmResourceGroupDeployment** cmdlets to add resources and
deployments to this resource group.

### Example 2: Create a resource group with tags
### Example 2: Create an empty resource group using positional parameters
```
PS> New-AzureRmResourceGroup RG01 "South Central US"
```

This command creates a resource group that has no resources.

### Example 3: Create a resource group with tags
```
PS> New-AzureRmResourceGroup -Name RG01 -Location "South Central US" -Tag @{Empty=$null; Department="Marketing"}
```
Expand Down