-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproviders.tf
More file actions
21 lines (15 loc) · 858 Bytes
/
providers.tf
File metadata and controls
21 lines (15 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
provider "stackit" {
# Region will be used as the default location for regional services.
# Not all services require a region, some are global
region = "eu01"
# NOTE: There are no environment variables available for the parameters stackit_service_account_key and private_key.
# Alternatively, we use TF_VAR_stackit_service_account_key and TF_VAR_stackit_service_account_private_key.
# Service account key used for authentication
service_account_key = var.stackit_service_account_key
# Private RSA key used for authentication, relevant for the key flow.
# It takes precedence over the private key that is included in the service account key.
private_key = var.stackit_service_account_private_key
# Enable beta resources.
enable_beta_resources = true
}
# These variables are mandatory and used on the provider configuration above.