-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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 creating internal Application Service Environments #5905
Comments
In my very limited testing... If you set https://azure.microsoft.com/en-us/resources/templates/201-web-app-asev2-ilb-create/
Of note, it also looks like you will need to manually implement the routes, ngs(s), and possibly other parts which are automatically created if you manually provision the environment via the portal. |
Thanks for the info. |
It would also be nice to have a reference attribute that retrieves the IP of the ASE after it is created. |
this would be great to have. my team is currently using an ARM template to deploy an ASE, and was hoping to switch to this resource, but looks like we can't since we use an ASE w/ ILB. |
We have an internal ASE that was deployed through the portal. When I query the configuration using the az cli, it reports the internalLoadBalancingMode as "Web, Publishing". This blog post references the enum in a way that implies that it is actually a flag field, which aligns with what the API is displaying. 0 = None So it looks like what we need to be able to do is either specify the integer values, or the combination of the values as a string. |
I believe this is now supported via the |
This has been released in version 2.16.0 of the provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. As an example: provider "azurerm" {
version = "~> 2.16.0"
}
# ... other configuration ... |
Thanks for adding this feature. Is there a plan to add the IP of the ILB as an attribute? |
Hi @tobske |
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 feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. If you feel I made an error 🤖 🙉 , please reach out to my human friends 👉 [email protected]. Thanks! |
Community Note
Description
The current App Service Environment provider does not support creating an internal ASE:
https://www.terraform.io/docs/providers/azurerm/r/app_service_environment.html
New or Affected Resource(s)
Potential Terraform Configuration
azurerm_app_service_environment should have a property called "Type" where it can be specified whether the ASE should be Internal or External.
The text was updated successfully, but these errors were encountered: