Remove name prefix

This commit is contained in:
Daniel_Groß 2025-11-06 09:03:44 +01:00
parent bc092833f2
commit a6a9f1642c
Signed by: daniel.gross
SSH key fingerprint: SHA256:tyyj1WVL1JmKHP6+jZjOtTzMj9U13qRk7jUcGI/zkRQ
6 changed files with 2 additions and 15 deletions

View file

@ -22,6 +22,5 @@ module "project" {
source = "./project"
default_region = var.default_region
service_account_key_path = var.service_account_key_path
name_prefix = var.name_prefix
organization_id = var.organization_id
}

View file

@ -1,6 +1,6 @@
resource "stackit_objectstorage_bucket" "example" {
project_id = module.project.project_info["project3"].project_id
name = "${var.name_prefix}-project-core-06-11-25"
name = "project-core-06-11-25"
}
resource "stackit_objectstorage_credentials_group" "example" {

View file

@ -1,10 +1,4 @@
# -- variables
variable "name_prefix" {
type = string
default = "test-landing-zone"
}
variable "organization_id" {
default = ""
}

View file

@ -5,7 +5,7 @@
resource "stackit_network_area" "sna" {
organization_id = var.organization_id
name = "${var.name_prefix}_project_sna"
name = "project_sna"
network_ranges = [
{
prefix = "10.220.0.0/16"

View file

@ -1,9 +1,4 @@
# -- variables
variable "name_prefix" {
type = string
default = "test-landing-zone"
}
variable "organization_id" {
default = ""
}

View file

@ -1,5 +1,4 @@
organization_id="03a34540-3c1a-4794-b2c6-7111ecf824ef"
service_account_key_path = "/Users/test/.stackit/credentials.json"
public_key_file = "/Users/test/.ssh/test_landing_zone.pub"
name_prefix = "test"