Some checks failed
CI Workflow / Check GoReleaser config (pull_request) Successful in 14s
CI Workflow / CI (pull_request) Failing after 12m47s
CI Workflow / Code coverage report (pull_request) Has been skipped
CI Workflow / Test readiness for publishing provider (pull_request) Successful in 30m54s
18 lines
422 B
HCL
18 lines
422 B
HCL
|
|
variable "project_id" {}
|
|
variable "region" {}
|
|
|
|
variable "service_account_key_path" {}
|
|
|
|
provider "stackitprivatepreview" {
|
|
service_account_key_path = var.service_account_key_path
|
|
}
|
|
|
|
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"
|
|
}
|