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

Support for new attribute "inbound IP address" on azurerm_app_service_environment_v3 #12450

Closed
haraldatbmw opened this issue Jul 2, 2021 · 3 comments · Fixed by #12932 or #13115
Closed

Comments

@haraldatbmw
Copy link
Contributor

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

To be able to create a DNS A record inside my private DNS zone for the app service environment internal load balancer the inbound IP address has to be extracted as new attribute on the resource and data-source of azurerm_app_service_environment_v3.

New or Affected Resource(s)

  • azurerm_app_service_environment_v3

References

  • #0000
@haraldatbmw
Copy link
Contributor Author

This network configuration data is available in the Azure SDK beginning with API version 2020-12-01.

Azure SDK 2021-01-15: https://github.com/Azure/azure-sdk-for-go/blob/main/services/web/mgmt/2021-01-15/web/appserviceenvironments.go#L839
Azure SDK 2020-12-01: https://github.com/Azure/azure-sdk-for-go/blob/main/services/web/mgmt/2020-12-01/web/appserviceenvironments.go#L839

The response of the REST API call looks like this:

GET https://management.azure.com/subscriptions/{{subscriptionId}}/resourceGroups/my-resourcegroup/providers/Microsoft.Web/hostingEnvironments/my-ase/configurations/networking?api-version=2021-01-15

{
    "id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/my-resourcegroup/providers/Microsoft.Web/hostingEnvironments/my-ase",
    "name": "networking",
    "type": "Microsoft.Web/hostingEnvironments/configurations/networking",
    "location": "West Europe",
    "properties": {
        "windowsOutboundIpAddresses": [
            "20.xx.xx.xx",
            "20.xx.xx.xx"
        ],
        "linuxOutboundIpAddresses": [
            "20.xx.xx.xx",
            "20.xx.xx.xx"
        ],
        "externalInboundIpAddresses": [],
        "internalInboundIpAddresses": [
            "10.xx.xx.xx"
        ],
        "allowNewPrivateEndpointConnections": true
    }
}

@github-actions
Copy link

This functionality has been released in v2.73.0 of the Terraform Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading.

For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you!

@github-actions
Copy link

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Sep 20, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.