https://github.com/epomatti/terraform-azurerm-appservice-acr-linux
Terraform AzureRM easy-to-use module to create an App Service (WebApp) that pulls the image from a Container Registry (ACR).
https://github.com/epomatti/terraform-azurerm-appservice-acr-linux
acr app-service azure azurerm container-registry terraform-module terrafrom
Last synced: 7 months ago
JSON representation
Terraform AzureRM easy-to-use module to create an App Service (WebApp) that pulls the image from a Container Registry (ACR).
- Host: GitHub
- URL: https://github.com/epomatti/terraform-azurerm-appservice-acr-linux
- Owner: epomatti
- License: mit
- Created: 2020-05-31T01:10:24.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2022-03-24T01:26:44.000Z (over 3 years ago)
- Last Synced: 2025-01-17T18:40:46.993Z (9 months ago)
- Topics: acr, app-service, azure, azurerm, container-registry, terraform-module, terrafrom
- Language: HCL
- Homepage: https://registry.terraform.io/modules/epomatti/appservice-acr-linux/azurerm/latest
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# terraform-azurerm-appservice-acr-linux
This Terraform module will help you create an App Service on Azure that uses an image from a Container Registry (ACR) for Linxu containers.
Terraform [AzureRM App Service](https://www.terraform.io/docs/providers/azurerm/r/app_service.html) specification.
## Usage
```terraform
module "app" {
source = "evandropomatti/appservice-acr-linux/azurerm"
version = "0.3.1"
name = "app"
location = "southbrazil"
resource_group_name = "my-resources"
app_service_plan_id = azurerm_app_service_plan.default.idstartup_command = "startup.sh"
acr_image = "contoso.azurecr.io/app:latest"
acr_url = "https://contosoregistry.azurecr.io"
acr_username = "contosoregistry"
acr_password = var.CONTAINER_REGISTRY_PASSWORD
always_on = truetags = {
environment = "dev"
}
}```