From f5cce43f95e950a7ead0d77b4aa814a9e2d226da Mon Sep 17 00:00:00 2001 From: gitops_test Date: Wed, 29 Apr 2026 12:06:36 +0000 Subject: [PATCH] Actualizar terraform-configurations/1/configuration-1.tf Eliminadas variables --- terraform-configurations/1/configuration-1.tf | 32 ------------------- 1 file changed, 32 deletions(-) diff --git a/terraform-configurations/1/configuration-1.tf b/terraform-configurations/1/configuration-1.tf index a12efa2..20e3367 100644 --- a/terraform-configurations/1/configuration-1.tf +++ b/terraform-configurations/1/configuration-1.tf @@ -11,38 +11,6 @@ provider "azurerm" { features {} } -variable "simpl_resource_group" { - type = string - description = "Name of the pre-existing Azure Resource Group" -} - -variable "simpl_vm_size" { - type = string -} - -variable "simpl_image_urn" { - type = string - description = "Format: Publisher:Offer:SKU:Version (e.g. Canonical:UbuntuServer:22_04-lts:latest)" -} - -variable "simpl_admin_password" { - type = string - sensitive = true -} - -variable "simpl_cloud_init" { - type = string -} - -variable "simpl_app_ports" { - type = list(string) - default = [] -} - -variable "simpl_nsg_count" { - type = number -} - locals { image_parts = split(":", "Canonical:UbuntuServer:22_04-lts:latest") }