Some checks failed
CI Workflow / Check GoReleaser config (pull_request) Successful in 4s
CI Workflow / CI (pull_request) Failing after 13m53s
CI Workflow / Code coverage report (pull_request) Has been skipped
CI Workflow / Test readiness for publishing provider (pull_request) Successful in 16m47s
24 lines
581 B
HCL
24 lines
581 B
HCL
provider "stackitprivatepreview" {
|
|
default_region = "eu01"
|
|
}
|
|
|
|
provider "stackitprivatepreview" {
|
|
default_region = "eu01"
|
|
service_account_key_path = "service_account.json"
|
|
}
|
|
|
|
# Authentication
|
|
|
|
# Key flow
|
|
provider "stackitprivatepreview" {
|
|
default_region = "eu01"
|
|
service_account_key = var.service_account_key
|
|
private_key = var.private_key
|
|
}
|
|
|
|
# Key flow (using path)
|
|
provider "stackitprivatepreview" {
|
|
default_region = "eu01"
|
|
service_account_key_path = var.service_account_key_path
|
|
private_key_path = var.private_key_path
|
|
}
|