We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a38d41a + d9dfa56 commit 9707763Copy full SHA for 9707763
main.tf
@@ -10,6 +10,7 @@ module "vmss" {
10
scale_set_name = var.vm_scale_set_name
11
location = var.location
12
resource_group = var.resource_group
13
+ tags = var.tags
14
admin_ssh_key = { public_key = tls_private_key.this.public_key_openssh }
15
subnet_id = var.subnet_id
16
public_ip_prefix_enabled = var.ado_vmss_public_ip_prefix_enabled
variables.tf
@@ -18,6 +18,12 @@ variable "subnet_id" {
18
type = string
19
}
20
21
+variable "tags" {
22
+ type = map(any)
23
+ description = "Resource tags"
24
+ default = {}
25
+}
26
+
27
variable "ado_project_name" {
28
description = "Target Azure DevOps Project name where VMSS agent pool would be provisioned"
29
0 commit comments