revert to old structure

This commit is contained in:
Maximilian_Schlenz 2025-07-15 12:04:25 +02:00
parent a495f53751
commit bb841ad2a3
15 changed files with 321 additions and 243 deletions

View file

@ -13,7 +13,7 @@ resource "stackit_security_group_rule" "rule" {
direction = var.rules[count.index].direction
project_id = var.project_id
security_group_id = stackit_security_group.this.id
security_group_id = stackit_security_group.this.security_group_id
description = var.rules[count.index].description
ether_type = var.rules[count.index].ether_type

View file

@ -5,4 +5,4 @@ output "security_group_id" {
output "rule_ids" {
value = stackit_security_group_rule.rule[*].id
}
}