Compare commits
No commits in common. "main" and "v1.0.0" have entirely different histories.
21
terraform/backend.tf
Normal file
21
terraform/backend.tf
Normal file
@ -0,0 +1,21 @@
|
||||
terraform {
|
||||
backend "s3" {
|
||||
endpoints = {
|
||||
s3 = "https://minio.bsdserver.nl:443"
|
||||
}
|
||||
|
||||
bucket = "home-terraform"
|
||||
key = "home/security/encryption/certificate-automation.tfstate"
|
||||
|
||||
# Configure credentials via environment variables:
|
||||
# export AWS_ACCESS_KEY_ID="your-access-key"
|
||||
# export AWS_SECRET_ACCESS_KEY="your-secret-key"
|
||||
|
||||
region = "main"
|
||||
skip_credentials_validation = true
|
||||
skip_metadata_api_check = true
|
||||
skip_requesting_account_id = true
|
||||
skip_region_validation = true
|
||||
use_path_style = true
|
||||
}
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user