Skip to content

Commit

Permalink
Fix malformed yaml files
Browse files Browse the repository at this point in the history
  • Loading branch information
iknite committed Feb 4, 2019
1 parent 1b5232a commit e0ac88f
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions deploy/aws/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@

resource "null_resource" "prebuild" {
provisioner "local-exec" {
command = "bash config_build.sh"
working_dir = "/config_file"
command = "bash ./config_build.sh"
}
}

Expand All @@ -33,7 +32,6 @@ module "leader" {
---
api_key: "terraform_qed"
path: "/var/tmp/qed/"
server:
node_id: "leader"
addr:
Expand All @@ -59,7 +57,6 @@ module "follower-1" {
---
api_key: "terraform_qed"
path: "/var/tmp/qed/"
server:
node_id: "follower-1"
addr:
Expand Down Expand Up @@ -89,7 +86,6 @@ module "follower-2" {
---
api_key: "terraform_qed"
path: "/var/tmp/qed/"
server:
node_id: "follower-2"
addr:
Expand Down Expand Up @@ -130,7 +126,6 @@ module "agent-publisher" {
---
api_key: "terraform_qed"
path: "/var/tmp/qed/"
agent:
node: "publisher"
bind: ":9300"
Expand Down Expand Up @@ -162,7 +157,6 @@ module "agent-monitor" {
---
api_key: "terraform_qed"
path: "/var/tmp/qed/"
agent:
node: "monitor"
bind: ":9200"
Expand Down Expand Up @@ -193,7 +187,6 @@ module "agent-auditor" {
---
api_key: "terraform_qed"
path: "/var/tmp/qed/"
agent:
node: "auditor"
bind: ":9100"
Expand Down

0 comments on commit e0ac88f

Please sign in to comment.