-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterraform.tf
More file actions
30 lines (26 loc) · 868 Bytes
/
terraform.tf
File metadata and controls
30 lines (26 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
terraform {
required_providers {
stackit = {
source = "stackitcloud/stackit"
version = "~> 0.43"
}
}
# Terraform Remote State Backend Configuration
# https://developer.hashicorp.com/terraform/language/backend/s3#configuration
backend "s3" {
bucket = "launchpad"
region = "eu01"
key = "prod-stackit/terraform/50_project/opsstack-agent-test/terraform.tfstate"
endpoints = {
s3 = "https://object.storage.eu01.onstackit.cloud"
}
# AWS specific checks must be skipped as they do not work on STACKIT
skip_credentials_validation = true
skip_region_validation = true
skip_requesting_account_id = true
skip_s3_checksum = true
# Credentials supplied by environment variables
# access_key = null # AWS_ACCESS_KEY_ID
# secret_key = null # AWS_SECRET_ACCESS_KEY
}
}