azure container web app deployment

azure container web app deployment
pull/938/head
PALAKILA HARIKRISHNA 2 years ago committed by GitHub
parent b19b09761d
commit 4d2c0fe17a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,93 @@
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "3.75.0"
}
}
}
provider "azurerm" {
features {}
}
resource "azurerm_resource_group" "resource_group" {
name = var.azurerm_resource_group
location = var.location
}
resource "azurerm_log_analytics_workspace" "analytics_workspace" {
name = var.azurerm_log_analytics_workspace_name
location = azurerm_resource_group.resource_group.location
resource_group_name = azurerm_resource_group.resource_group.name
sku = "PerGB2018"
retention_in_days = 30
}
resource "azurerm_container_app_environment" "app_environment" {
name = var.azurerm_container_app_environment_name
location = azurerm_resource_group.resource_group.location
resource_group_name = azurerm_resource_group.resource_group.name
log_analytics_workspace_id = azurerm_log_analytics_workspace.analytics_workspace.id
}
resource "azurerm_container_app" "app" {
name = var.azurerm_container_app_name
container_app_environment_id = azurerm_container_app_environment.app_environment.id
resource_group_name = azurerm_resource_group.resource_group.name
revision_mode = "Multiple"
template {
container {
name = "refinaryapp"
image = "nginxdemos/hello"
cpu = 0.5
memory = "1Gi"
}
}
ingress {
allow_insecure_connections = false
target_port = 80
traffic_weight {
percentage = 100
}
external_enabled = true
}
}
output "azurerm_container_app_url" {
value = azurerm_container_app.app.latest_revision_fqdn
}
output "azurerm_container_app_revision_name" {
value = azurerm_container_app.app.latest_revision_name
}
variable "azurerm_resource_group" {
description = "Paypal vendor - ResourceGroup."
type = string
default = "Paypal-vendor-container-rg"
}
variable "location" {
description = "Paypal vendor - us vendor - South New Jersey."
type = string
default = "East US"
}
variable "azurerm_log_analytics_workspace_name" {
description = "Azure Log Analytics Workspace - Paypal vendor."
type = string
default = "Paypal-vendor-container-analytic"
}
variable "azurerm_container_app_environment_name" {
description = "Azure Container App Environment - Paypal vendor."
type = string
default = "Paypal-vendor-container-environment"
}
variable "azurerm_container_app_name" {
description = "Azure Container App Paypal vendor."
type = string
default = "paypalvendorcontainer"
}
Loading…
Cancel
Save