Skip to content

Commit

Permalink
feat: (#PSKD-401) AWS NIST flag support
Browse files Browse the repository at this point in the history
  • Loading branch information
dhoucgitter committed Jun 21, 2024
1 parent 324e6e9 commit e96fca9
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
6 changes: 6 additions & 0 deletions modules/aws_vm/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -112,3 +112,9 @@ variable "enable_ebs_encryption" {
type = bool
default = false
}

variable "enable_nist_features" {
description = "A flag to enable NIST features under development for this project"
type = bool
default = false
}
5 changes: 5 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -238,3 +238,8 @@ output "validate_subnet_azs" {
error_message = "Your subnet_azs keys must have a string list value of AZs greater than or equal to the list of CIDRs in equivalent key in the subnets variable."
}
}

output "enable_nist_features" {
description = "Flag to enable NIST features."
value = var.enable_nist_features
}
6 changes: 6 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -713,3 +713,9 @@ variable "aws_fsx_ontap_file_system_throughput_capacity" {
error_message = "Valid values for `aws_fsx_ontap_file_system_throughput_capacity` are 128, 256, 512, 1024, 2048 and 4096."
}
}

variable "enable_nist_features" {
description = "A flag to enable NIST features under development for this project"
type = bool
default = false
}

0 comments on commit e96fca9

Please sign in to comment.