feat: add labels to terraform provider

This commit is contained in:
allanice001
2025-11-03 19:07:15 +00:00
parent ee824a9c5a
commit 3ca77c097d
20 changed files with 644 additions and 13 deletions

View File

@@ -0,0 +1,4 @@
resource "autoglue_taints" "this" {
key = var.key
}

View File

@@ -0,0 +1,4 @@
output "ids" {
description = "Map of taint IDs by key."
value = { for k, r in autoglue_taint.this : k => r.id }
}

View File

@@ -0,0 +1,11 @@
variable "key" {
type = string
}
variable "value" {
type = string
}
variable "effect" {
type = string
}

View File

@@ -0,0 +1,9 @@
terraform {
required_version = ">= 1.5.0"
required_providers {
autoglue = {
source = "glueops/autoglue/autoglue"
}
}
}