Last active
June 30, 2023 14:27
-
-
Save imartinflores/1b7ce5e048c862d848365624fe954dd7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
variable "resource_group_name_prefix" { | |
default = "rg" | |
description = "Prefix of the resource group name" | |
} | |
variable "resource_group_name" { | |
default = "prefix_SomeName" | |
description = "Resource group name" | |
} | |
variable "resource_group_location" { | |
default = "WestEurope" | |
description = "Location of the resource group." | |
} | |
variable "vm_location" { | |
default = "westeurope" | |
} | |
variable "azurerm_linux_virtual_machine_name" { | |
default = "resourceprefix-location-environment-project" | |
} | |
variable "azure_linux_vm_pcname" { | |
default = "resourceprefix-location-environment-project-pcname" | |
} | |
variable "azure_user_admin" { | |
default = "azureuser" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment