Documentation has been created on best effort so some parts may be missing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "http://json-schema.org/draft-07/schema#", | |
| "$id": "https://example.com/schemas/atlantis-config.schema.json", | |
| "title": "Atlantis server-side repo config", | |
| "type": "object", | |
| "additionalProperties": false, | |
| "properties": { | |
| "version": { | |
| "description": "Config version (example: 3)", | |
| "type": "integer", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| repos: | |
| - repo: https://github.com/antonbabenko/pre-commit-terraform | |
| rev: v1.100.0 | |
| hooks: | |
| - id: terraform_fmt | |
| name: Terraform FMT | |
| - id: terragrunt_fmt | |
| name: Terragrunt FMT | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ➜ terraform apply > tflog.txt | |
| 2025-06-13T14:50:19.298+0100 [INFO] Terraform version: 1.11.4 | |
| 2025-06-13T14:50:19.299+0100 [DEBUG] using github.com/hashicorp/go-tfe v1.70.0 | |
| 2025-06-13T14:50:19.299+0100 [DEBUG] using github.com/hashicorp/hcl/v2 v2.23.0 | |
| 2025-06-13T14:50:19.299+0100 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1 | |
| 2025-06-13T14:50:19.299+0100 [DEBUG] using github.com/zclconf/go-cty v1.16.0 | |
| 2025-06-13T14:50:19.299+0100 [INFO] Go runtime version: go1.23.3 | |
| 2025-06-13T14:50:19.299+0100 [INFO] CLI args: []string{"terraform", "apply"} | |
| 2025-06-13T14:50:19.299+0100 [DEBUG] Attempting to open CLI config file: /Users/bysd/.terraformrc | |
| 2025-06-13T14:50:19.299+0100 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apiVersion: v1 | |
| kind: Pod | |
| metadata: | |
| name: sleeper | |
| spec: | |
| containers: | |
| - name: alpine | |
| image: alpine:latest | |
| # Just spin & wait forever | |
| command: [ "/bin/sh", "-c", "--" ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## deployment.yml | |
| apiVersion: apps/v1 | |
| kind: Deployment | |
| metadata: | |
| name: psc-ilb | |
| spec: | |
| replicas: 3 | |
| selector: | |
| matchLabels: | |
| app: psc-ilb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ╷ | |
| │ Error: Error waiting to create Connector: Error waiting for Creating Connector: Error code 3, message: Operation failed: VPC Access did not have permission to resolve the subnet or the provided subnet does not exist. | |
| │ | |
| │ with google_vpc_access_connector.connector, | |
| │ on vpc-connector.tf line 4, in resource "google_vpc_access_connector" "connector": | |
| │ 4: resource "google_vpc_access_connector" "connector" { | |
| │ | |
| ╵ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| terraform { | |
| } | |
| backend "s3" { | |
| endpoint = "https://s3.uk-1.wasabisys.com" | |
| region = "eu-west-1" | |
| bucket = "<bucket-name>" | |
| key = "<path/to/file>/terraform.tfstate" | |
| skip_credentials_validation = true | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mariadb: | |
| image: mariadb:latest | |
| restart: always | |
| hostname: "mariadb" | |
| command: "mysqld --init-file /data/application/init.sql" | |
| volumes: | |
| - mariadb-data:/var/lib/mysql | |
| - ./init.sql:/data/application/init.sql | |
| ports: | |
| - '3306:3306' |
NewerOlder