Skip to content

Commit

Permalink
Merge pull request #14 from edenlabllc/release/v1.7.0
Browse files Browse the repository at this point in the history
Release/v1.7.0
  • Loading branch information
apanasiuk-el authored Jun 26, 2024
2 parents 471a627 + 195e54a commit 2966c01
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions terraform/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,11 @@ output "rmk_acm_cert_arn" {
value = module.acm[0].this_acm_certificate_arn
}

output "rmk_test_suites" {
description = "Whether test suites in cluster state enabled"
value = var.test_suites
}

output "bastion_private_key_path" {
description = "Path to private key for connecting to EC2 bastion instance via SSH"
value = var.bastion_enabled ? abspath(local_file.local_file_bastion[0].filename) : ""
Expand Down
6 changes: 6 additions & 0 deletions terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -287,3 +287,9 @@ variable "cluster_log_types" {
type = list(string)
default = []
}

variable "test_suites" {
description = "Enable test suites in cluster state"
type = string
default = "false"
}

0 comments on commit 2966c01

Please sign in to comment.