Skip to content

Commit

Permalink
fix terraform formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
arriven committed May 21, 2022
1 parent f37ffc3 commit 5b65a5b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions terraform/digital_ocean/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ resource "digitalocean_app" "db1000n" {
instance_size_slug = var.instance_size_slug

env {
key = "CONFIG"
value = "${var.config_path}"
key = "CONFIG"
value = var.config_path
}

git {
Expand Down
2 changes: 1 addition & 1 deletion terraform/heroku/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ resource "heroku_app" "app" {

config_vars = {
GOVERSION = "1.18"
CONFIG = "${var.config_path}"
CONFIG = "${var.config_path}"
}

buildpacks = [
Expand Down

0 comments on commit 5b65a5b

Please sign in to comment.