feat(kms): add keyring resource and datasource (#1049)

relates to STACKITTPR-410
This commit is contained in:
Ruben Hönle 2025-11-12 14:10:58 +01:00 committed by GitHub
parent c6e1c3d3a8
commit edf22a6193
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 1157 additions and 9 deletions

View file

@ -0,0 +1,10 @@
variable "project_id" {}
variable "display_name" {}
variable "description" {}
resource "stackit_kms_keyring" "keyring" {
project_id = var.project_id
display_name = var.display_name
description = var.description
}

View file

@ -0,0 +1,8 @@
variable "project_id" {}
variable "display_name" {}
resource "stackit_kms_keyring" "keyring" {
project_id = var.project_id
display_name = var.display_name
}