All checks were successful
Code Quality & Security Scan / TFLint (push) Successful in 21s
Code Quality & Security Scan / Tfsec Security Scan (push) Successful in 31s
Code Quality & Security Scan / Checkov Security Scan (push) Successful in 35s
Code Quality & Security Scan / SonarQube Trigger (push) Successful in 45s
Code Quality & Security Scan / Terraform Init (push) Successful in 29s
- Updated backend.tf to use partial configuration - Modified workflow to pass backend settings via -backend-config flags - Follows Azure-style pattern with environment variables - Improves flexibility and keeps configuration out of version control - Required secrets: MINIO_ENDPOINT, MINIO_BUCKET, MINIO_STATE_KEY
7 lines
196 B
HCL
7 lines
196 B
HCL
terraform {
|
|
backend "s3" {
|
|
# Backend configuration provided via -backend-config flags during terraform init
|
|
# This allows for environment-specific and CI/CD-friendly configuration
|
|
}
|
|
}
|