Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| dc269e5fc2 | |||
| 15c8f3f25e |
@ -20,7 +20,7 @@ jobs:
|
|||||||
- name: Setup TFLint
|
- name: Setup TFLint
|
||||||
uses: terraform-linters/setup-tflint@v4
|
uses: terraform-linters/setup-tflint@v4
|
||||||
with:
|
with:
|
||||||
tflint_version: v0.50.3
|
tflint_version: latest
|
||||||
|
|
||||||
- name: Initialize TFLint
|
- name: Initialize TFLint
|
||||||
working-directory: terraform
|
working-directory: terraform
|
||||||
|
|||||||
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