From 2c805e508b325d0554a66511f57e94eae769f2d1 Mon Sep 17 00:00:00 2001 From: PALAKILA HARIKRISHNA <127740058+harikrishnasolutionarchitect@users.noreply.github.com> Date: Fri, 13 Oct 2023 17:05:14 +0530 Subject: [PATCH] azure container web application deployment azure container web application deployment --- .../variables.tf | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 harikrishna/azure-container-web-application-deployment/variables.tf diff --git a/harikrishna/azure-container-web-application-deployment/variables.tf b/harikrishna/azure-container-web-application-deployment/variables.tf new file mode 100644 index 00000000..89f787a8 --- /dev/null +++ b/harikrishna/azure-container-web-application-deployment/variables.tf @@ -0,0 +1,29 @@ +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" +}