Skip to content

Commit

Permalink
add types to variables
Browse files Browse the repository at this point in the history
  • Loading branch information
richgreen-moj committed Oct 18, 2024
1 parent bea9c94 commit aaa51d3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions modules/securityhub/variables.tf
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
variable "sechub_eventbridge_rule_name" {
description = "SecurityHub Eventbridge rule name"
default = "sechub_high_and_critical_findings"
type = string
}

variable "sechub_sns_topic_name" {
description = "SecurityHub SNS Topic name"
default = "sechub_findings_sns_topic"
type = string
}

variable "sechub_sns_kms_key_name" {
description = "SecurityHub SNS Topic KMS key name"
default = "alias/sns-kms-key"
type = string
}
3 changes: 3 additions & 0 deletions test/securityhub-test/variables.tf
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
variable "sechub_eventbridge_rule_name" {
description = "SecurityHub Eventbridge rule name"
default = "sechub_high_and_critical_findings"
type = string
}

variable "sechub_sns_topic_name" {
description = "SecurityHub SNS Topic name"
default = "sechub_findings_sns_topic"
type = string
}

variable "sechub_sns_kms_key_name" {
description = "SecurityHub SNS Topic KMS key name"
default = "alias/sns-kms-key"
type = string
}

0 comments on commit aaa51d3

Please sign in to comment.