Skip to content

Instantly share code, notes, and snippets.

@imartinflores
Last active June 30, 2023 14:27
Show Gist options
  • Save imartinflores/1b7ce5e048c862d848365624fe954dd7 to your computer and use it in GitHub Desktop.
Save imartinflores/1b7ce5e048c862d848365624fe954dd7 to your computer and use it in GitHub Desktop.
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