this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(infra): add local S3 auth config

Khue Doan 502bb7ba 581011d8

+20 -12
+15 -9
compose.yaml
··· 1 1 services: 2 + tfstate: 3 + image: quay.io/minio/minio:RELEASE.2025-05-24T17-08-30Z 4 + command: 5 + - server 6 + - /data 7 + - --console-address=:9001 8 + environment: 9 + MINIO_ROOT_USER: minioadmin 10 + MINIO_ROOT_PASSWORD: minioadmin 11 + ports: 12 + - 9000:9000 13 + - 9001:9001 2 14 temporal: 3 15 image: docker.io/temporalio/server:1.27 4 16 entrypoint: ··· 18 30 - /var/run/docker.sock:/var/run/docker.sock 19 31 environment: 20 32 TEMPORAL_HOST: temporal:7233 33 + TG_NON_INTERACTIVE: true 34 + AWS_ACCESS_KEY_ID: minioadmin 35 + AWS_SECRET_ACCESS_KEY: minioadmin 21 36 depends_on: 22 37 temporal: 23 38 condition: service_healthy 24 - tfstate: 25 - image: quay.io/minio/minio:RELEASE.2025-05-24T17-08-30Z 26 - command: 27 - - server 28 - - /data 29 - - --console-address=:9001 30 - ports: 31 - - 9000:9000 32 - - 9001:9001
+1 -1
controller/activities/terragrunt.go
··· 48 48 // Construct the full path to the module 49 49 fullPath := filepath.Join(repoPath, "infra", stack, modulePath) 50 50 51 - cmd := exec.CommandContext(ctx, "terragrunt", "apply", "--auto-approve") 51 + cmd := exec.CommandContext(ctx, "terragrunt", "apply", "--backend-bootstrap", "--auto-approve") 52 52 cmd.Dir = fullPath 53 53 54 54 output, err := cmd.CombinedOutput()
+4 -2
infra/local/root.hcl
··· 1 1 remote_state { 2 2 backend = "s3" 3 3 config = { 4 - encrypt = false 5 - endpoint = "http://localhost:9000" 4 + endpoints = { 5 + s3 = "http://tfstate:9000" 6 + } 6 7 bucket = "tfstate" 7 8 key = "${path_relative_to_include()}/terraform.tfstate" 8 9 region = "eu-west-1" 10 + encrypt = false 9 11 disable_aws_client_checksums = true 10 12 skip_bucket_ssencryption = true 11 13 skip_bucket_public_access_blocking = true