Skip to content

Commit

Permalink
Merge pull request #885 from terraform-providers/appserviceslot-docs
Browse files Browse the repository at this point in the history
App Service Active Slot: Fixing a broken example
  • Loading branch information
tombuildsstuff authored Feb 23, 2018
2 parents 1ea6d1a + ba8e098 commit ff4afd3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions website/docs/r/app_service_active_slot.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ resource "azurerm_app_service_slot" "test" {
}
resource "azurerm_app_service_active_slot" "test" {
resource_group_name = "${azurerm_resource_group.test.name}"
app_service_name = "${azurerm_app_service.test.name}"
source_slot_name = "${azurerm_app_service_slot.test.name}"
resource_group_name = "${azurerm_resource_group.test.name}"
app_service_name = "${azurerm_app_service.test.name}"
app_service_slot_name = "${azurerm_app_service_slot.test.name}"
}
```

Expand Down

0 comments on commit ff4afd3

Please sign in to comment.