mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
30 lines
552 B
Terraform
30 lines
552 B
Terraform
|
variable "location" {
|
||
|
description = "Region to deploy resources"
|
||
|
default = "East US"
|
||
|
}
|
||
|
|
||
|
variable "resource_group_name" {
|
||
|
description = "Name of the resource group"
|
||
|
}
|
||
|
|
||
|
variable "prefix" {
|
||
|
description = "Prefix to append to resources"
|
||
|
}
|
||
|
|
||
|
variable "dedicated_host_id" {
|
||
|
description = "Dedicated Host ID"
|
||
|
}
|
||
|
|
||
|
variable "ssh_public_key" {
|
||
|
description = "SSH Public Key"
|
||
|
}
|
||
|
|
||
|
variable "vm_size" {
|
||
|
description = "VM Size"
|
||
|
}
|
||
|
|
||
|
variable "tags" {
|
||
|
description = "Tags to apply to all resources created by this module"
|
||
|
type = map(string)
|
||
|
}
|