Skip to content

Commit

Permalink
r/api_management: fixing bugs in the documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
tombuildsstuff committed Mar 18, 2019
1 parent 47f2106 commit 738f561
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion website/docs/d/api_management_api.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ data "azurerm_api_management_api" "test" {
name = "search-api"
api_management_name = "search-api-management"
resource_group_name = "search-service"
revision = 2
revision = "2"
}
output "api_management_api_id" {
Expand Down
6 changes: 3 additions & 3 deletions website/docs/r/api_management_product_group.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ data "azurerm_api_management_group" "example" {
resource_group_name = "${data.azurerm_api_management.example.resource_group_name}"
}
resource "azurerm_api_management_group_user" "example" {
user_id = "${data.azurerm_api_management_user.example.id}"
resource "azurerm_api_management_product_group" "example" {
product_id = "${data.azurerm_api_management_user.example.id}"
group_name = "${data.azurerm_api_management_group.example.name}"
api_management_name = "${data.azurerm_api_management.example.name}"
resource_group_name = "${data.azurerm_api_management.example.resource_group_name}"
Expand All @@ -42,7 +42,7 @@ resource "azurerm_api_management_group_user" "example" {

The following arguments are supported:

* `user_id` - (Required) The ID of the API Management User which should be assigned to this API Management Group. Changing this forces a new resource to be created.
* `product_id` - (Required) The ID of the API Management Product within the API Management Service. Changing this forces a new resource to be created.

* `group_name` - (Required) The Name of the API Management Group within the API Management Service. Changing this forces a new resource to be created.

Expand Down

0 comments on commit 738f561

Please sign in to comment.