16 lines
340 B
HCL
16 lines
340 B
HCL
|
|
variable "project_id" {}
|
|
variable "region" {}
|
|
|
|
provider "stackitprivatepreview" {
|
|
test = "test"
|
|
}
|
|
|
|
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"
|
|
}
|