- Add Vault AppRole and Ansible integration for certificates - Configure policies and secret engines - Add comprehensive documentation
22 lines
606 B
HCL
22 lines
606 B
HCL
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
|
|
}
|
|
}
|