Skip to content
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

azurerm_api_management unable to set or source portal delegation data #13309

Open
zpbonjour opened this issue Sep 10, 2021 · 1 comment
Open

Comments

@zpbonjour
Copy link

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

Currently azurerm_api_management is not able to set portal delegation information or pull portal delegation data as a data source.

New or Affected Resource(s)

azurerm_api_management_portal_delegation

Potential Terraform Configuration

resource "azurerm_resource_group" "example" {
  name     = "example-resources"
  location = "West Europe"
}

resource "azurerm_api_management" "example" {
  name                = "example-apim"
  location            = azurerm_resource_group.example.location
  resource_group_name = azurerm_resource_group.example.name
  publisher_name      = "My Company"
  publisher_email     = "company@terraform.io"

  sku_name = "Developer_1"
}

resource "azurerm_api_management_portal_delegation" "example" {
  api_management_name = azurerm_api_management.example.name
  location = azurerm_resource_group.example.location
  resource_group_name = azurerm_resource_group.example.name
  subscriptions_enable = true
  user_registrations_enabled = false
}

References

https://docs.microsoft.com/en-us/azure/templates/microsoft.apimanagement/2020-12-01/service/portalsettings-delegation

  • #0000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants