feat: initial copy of v0.1.0
All checks were successful
Publish / Check GoReleaser config (push) Successful in 5s
Publish / Publish provider (push) Successful in 16m14s

This commit is contained in:
Marcel S. Henselin 2026-03-13 09:03:49 +01:00
parent 4cc801a7f3
commit 7d4cbb6b08
538 changed files with 63361 additions and 55213 deletions

View file

@ -1,9 +1,8 @@
# Copyright (c) STACKIT
variable "project_id" {}
variable "name" {}
variable "region" {}
provider "stackit" {
provider "stackitprivatepreview" {
default_region = "eu01"
credentials_path = "~/.stackit/credentials.json"
service_account_token = ""
@ -37,7 +36,11 @@ provider "stackit" {
enable_beta_resources = "true"
}
resource "stackit_network" "network" {
name = var.name
project_id = var.project_id
data "stackitprivatepreview_postgresflexalpha_flavor" "flavor" {
project_id = var.project_id
region = var.region
cpu = 2
ram = 4
node_type = "Single"
storage_class = "premium-perf2-stackit"
}

View file

@ -1,12 +1,18 @@
# Copyright (c) STACKIT
variable "project_id" {}
variable "name" {}
variable "region" {}
provider "stackit" {
variable "service_account_key_path" {}
provider "stackitprivatepreview" {
service_account_key_path = var.service_account_key_path
}
resource "stackit_network" "network" {
name = var.name
project_id = var.project_id
}
data "stackitprivatepreview_postgresflexalpha_flavor" "flavor" {
project_id = var.project_id
region = var.region
cpu = 2
ram = 4
node_type = "Single"
storage_class = "premium-perf2-stackit"
}

View file

@ -1,13 +1,16 @@
# Copyright (c) STACKIT
variable "project_id" {}
variable "name" {}
variable "region" {}
provider "stackit" {
provider "stackitprivatepreview" {
test = "test"
}
resource "stackit_network" "network" {
name = var.name
project_id = var.project_id
}
data "stackitprivatepreview_postgresflexalpha_flavor" "flavor" {
project_id = var.project_id
region = var.region
cpu = 2
ram = 4
node_type = "Single"
storage_class = "premium-perf2-stackit"
}