Skip to content

Commit

Permalink
Feat: Add tags to keep VMs running.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jose Luis Lucas committed Apr 1, 2019
1 parent c39064e commit 28916f3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions deploy/aws/modules/agent/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,6 @@ resource "aws_instance" "qed-agent" {
tags {
Name = "${format("${var.name}-%01d", count.index)}"
Role = "${var.role}"
DAM_OnOff = "NO"
}
}
1 change: 1 addition & 0 deletions deploy/aws/modules/inmemory_storage/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,6 @@ resource "aws_instance" "inmemory-storage" {
tags {
Name = "qed-${var.name}"
Role = "${var.role}"
DAM_OnOff = "NO"
}
}
1 change: 1 addition & 0 deletions deploy/aws/modules/prometheus/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,6 @@ resource "aws_instance" "prometheus" {
tags {
Name = "qed-prometheus"
Role = "${var.role}"
DAM_OnOff = "NO"
}
}
1 change: 1 addition & 0 deletions deploy/aws/modules/qed/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,6 @@ resource "aws_instance" "qed-server" {
tags {
Name = "${format("${var.name}-%01d", count.index)}"
Role = "${var.role}"
DAM_OnOff = "NO"
}
}
1 change: 1 addition & 0 deletions deploy/aws/modules/riot/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,6 @@ resource "aws_instance" "riot" {
tags {
Name = "qed-riot"
Role = "${var.role}"
DAM_OnOff = "NO"
}
}

0 comments on commit 28916f3

Please sign in to comment.