Skip to content

Commit

Permalink
Rts.m5 (#109)
Browse files Browse the repository at this point in the history
* Added default key to rts deployments

* Added default key to rts deployments
  • Loading branch information
filipecosta90 authored Jul 23, 2024
1 parent 2317e68 commit 9887def
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 53 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,32 +19,6 @@ resource "aws_spot_instance_request" "client" {
delete_on_termination = true
}

volume_tags = {
Environment = "${var.environment}"
Project = "${var.environment}"
Name = "ebs_block_device-${var.setup_name}-CLIENT-${count.index + 1}"
setup = "${var.setup_name}"
triggering_env = "${var.triggering_env}"
github_actor = "${var.github_actor}"
github_org = "${var.github_org}"
github_repo = "${var.github_repo}"
github_sha = "${var.github_sha}"
timeout_secs = "${var.timeout_secs}"
}

tags = {
Environment = "${var.environment}"
Project = "${var.environment}"
Name = "${var.setup_name}-CLIENT-${count.index + 1}"
setup = "${var.setup_name}"
triggering_env = "${var.triggering_env}"
github_actor = "${var.github_actor}"
github_org = "${var.github_org}"
github_repo = "${var.github_repo}"
github_sha = "${var.github_sha}"
timeout_secs = "${var.timeout_secs}"
}

################################################################################
# This will ensure we wait here until the instance is ready to receive the ssh connection
################################################################################
Expand Down
27 changes: 0 additions & 27 deletions terraform/oss-redistimeseries-m5-spot-instances/db-resources.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,33 +19,6 @@ resource "aws_spot_instance_request" "server" {
delete_on_termination = true
}

volume_tags = {
Environment = "${var.environment}"
Project = "${var.environment}"
Name = "ebs_block_device-${var.setup_name}-DB-${count.index + 1}"
setup = "${var.setup_name}"
triggering_env = "${var.triggering_env}"
github_actor = "${var.github_actor}"
github_org = "${var.github_org}"
github_repo = "${var.github_repo}"
github_sha = "${var.github_sha}"
timeout_secs = "${var.timeout_secs}"
}


tags = {
Environment = "${var.environment}"
Project = "${var.environment}"
Name = "${var.setup_name}-DB-${count.index + 1}"
setup = "${var.setup_name}"
triggering_env = "${var.triggering_env}"
github_actor = "${var.github_actor}"
github_org = "${var.github_org}"
github_repo = "${var.github_repo}"
github_sha = "${var.github_sha}"
timeout_secs = "${var.timeout_secs}"
}


################################################################################
# This will ensure we wait here until the instance is ready to receive the ssh connection
Expand Down

0 comments on commit 9887def

Please sign in to comment.