update-variables #1

Merged
michael.sodan merged 7 commits from update-variables into main 2025-11-06 08:20:54 +00:00
6 changed files with 2 additions and 15 deletions
Showing only changes of commit a6a9f1642c - Show all commits

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"