feat: add docs website
This commit is contained in:
parent
f0ec2e4942
commit
576125d377
1 changed files with 683 additions and 3 deletions
16
backend.tf
Normal file
16
backend.tf
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
terraform {
|
||||
backend "s3" {
|
||||
bucket = "devxy-tf-state-build-binaries"
|
||||
key = "terraform.tfstate"
|
||||
region = "fsn1"
|
||||
access_key = var.HETZNER_S3_ACCESS_KEY_K3S
|
||||
secret_key = var.HETZNER_S3_SECRET_KEY_K3S
|
||||
endpoint = "https://fsn1.your-objectstorage.com"
|
||||
skip_credentials_validation = true
|
||||
skip_metadata_api_check = true
|
||||
skip_region_validation = true
|
||||
skip_s3_checksum = true
|
||||
encrypt = true
|
||||
sse_customer_key = "q6DUYGPpNSFFynGK1k6q6ZMeHRVLYTuPN1H3blilfB4="
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue