Skip to content

Commit

Permalink
fix(vpc): Add correctly formatted SSH key (#36)
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Harrison <36608309+chris3ware@users.noreply.github.com>
  • Loading branch information
chris3ware authored Sep 12, 2024
1 parent c60122c commit a3130f8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tofu-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ on:
branches: [main]
paths:
- tf/**/*.tf
- tf/**.*.tfvars
- tf/**/*.tfvars
push:
branches: [main]
paths:
- tf/**/*.tf
- tf/**.*.tfvars
- tf/**/*.tfvars

# Disable permissions for all available scopes
permissions: {}
Expand Down
2 changes: 1 addition & 1 deletion tf/dev/vpc/terraform.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ service = "vpc"
trusted_ips = ["192.0.2.1/32"]

# Add public SSH key
ssh_key = "bbaed9a367ea365bf982307ba5e4b873"
ssh_key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMNSplDEGibL7tUs87JsuwnHmDA2uSB+M2kUlOQuI0Fc"
3 changes: 2 additions & 1 deletion tf/prd/vpc/terraform.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ service = "vpc"
trusted_ips = ["198.51.100.0/32"]

# Add public SSH key
ssh_key = "bbaed9a367ea365bf982307ba5e4b873"
ssh_key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMNSplDEGibL7tUs87JsuwnHmDA2uSB+M2kUlOQuI0Fc"

0 comments on commit a3130f8

Please sign in to comment.