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
46 lines
2.4 KiB
HCL
46 lines
2.4 KiB
HCL
|
|
variable "project_id" {}
|
|
variable "region" {}
|
|
|
|
provider "stackitprivatepreview" {
|
|
default_region = "eu01"
|
|
credentials_path = "~/.stackit/credentials.json"
|
|
service_account_token = ""
|
|
service_account_key_path = ""
|
|
service_account_key = ""
|
|
private_key_path = ""
|
|
private_key = ""
|
|
service_account_email = "abc@abc.de"
|
|
cdn_custom_endpoint = "https://cdn.api.eu01.stackit.cloud"
|
|
dns_custom_endpoint = "https://dns.api.stackit.cloud"
|
|
git_custom_endpoint = "https://git.api.stackit.cloud"
|
|
iaas_custom_endpoint = "https://iaas.api.stackit.cloud"
|
|
mongodbflex_custom_endpoint = "https://mongodbflex.api.stackit.cloud"
|
|
modelserving_custom_endpoint = "https://modelserving.api.stackit.cloud"
|
|
loadbalancer_custom_endpoint = "https://load-balancer.api.stackit.cloud"
|
|
mariadb_custom_endpoint = "https://mariadb.api.stackit.cloud"
|
|
authorization_custom_endpoint = "https://authorization.api.stackit.cloud"
|
|
objectstorage_custom_endpoint = "https://objectstorage.api.stackit.cloud"
|
|
observability_custom_endpoint = "https://observability.api.stackit.cloud"
|
|
opensearch_custom_endpoint = "https://opensearch.api.stackit.cloud"
|
|
postgresflex_custom_endpoint = "https://postgresflex.api.stackit.cloud"
|
|
redis_custom_endpoint = "https://redis.api.stackit.cloud"
|
|
server_backup_custom_endpoint = "https://server-backup.api.stackit.cloud"
|
|
server_update_custom_endpoint = "https://server-update.api.stackit.cloud"
|
|
service_account_custom_endpoint = "https://service-account.api.stackit.cloud"
|
|
resourcemanager_custom_endpoint = "https://resourcemanager.api.stackit.cloud"
|
|
sqlserverflex_custom_endpoint = "https://sqlserverflex.api.stackit.cloud"
|
|
ske_custom_endpoint = "https://ske.api.stackit.cloud"
|
|
service_enablement_custom_endpoint = "https://service-enablement.api.stackit.cloud"
|
|
token_custom_endpoint = "https://token.api.stackit.cloud"
|
|
enable_beta_resources = "true"
|
|
}
|
|
|
|
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"
|
|
}
|