Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion infrastructure/modules/alb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ For **NLB (network load balancer):**
| <a name="input_tag_version"></a> [tag\_version](#input\_tag\_version) | Used to identify the tagging version in use | `string` | `"1.0"` | no |
| <a name="input_tags"></a> [tags](#input\_tags) | Additional tags (e.g. `{'BusinessUnit': 'XYZ'}`).<br/>Neither the tag keys nor the tag values will be modified by this module. | `map(string)` | `{}` | no |
| <a name="input_target_groups"></a> [target\_groups](#input\_target\_groups) | Map of target group configurations to create. Passed directly to the upstream module.<br/>See https://registry.terraform.io/modules/terraform-aws-modules/alb/aws/latest<br/>for full schema documentation. | `any` | `{}` | no |
| <a name="input_terraform_source"></a> [terraform\_source](#input\_terraform\_source) | Source location to record in the Terraform\_source tag. Defaults to this module path. | `string` | `null` | no |
| <a name="input_terraform_source"></a> [terraform\_source](#input\_terraform\_source) | Source location to record in the Terraform\_source tag. Defaults to the caller module path when not set. | `string` | `null` | no |
| <a name="input_tool"></a> [tool](#input\_tool) | The tool used to deploy the resource | `string` | `"Terraform"` | no |
| <a name="input_vpc_id"></a> [vpc\_id](#input\_vpc\_id) | ID of the VPC in which the load balancer will be created. | `string` | n/a | yes |
| <a name="input_web_acl_arn"></a> [web\_acl\_arn](#input\_web\_acl\_arn) | ARN of a WAFv2 Web ACL to associate with the load balancer. Only valid for ALB. When null, no WAF association is created. | `string` | `null` | no |
Expand Down
4 changes: 3 additions & 1 deletion infrastructure/modules/alb/context.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
module "this" {
source = "../tags"

enabled = var.enabled
service = var.service
project = var.project
region = var.region
Expand All @@ -48,6 +49,7 @@ module "this" {
}

# Copy contents of screening-terraform-modules-aws/tags/variables.tf here
# tflint-ignore: terraform_unused_declarations
variable "aws_region" {
type = string
description = "The AWS region"
Expand Down Expand Up @@ -111,7 +113,7 @@ variable "context" {
variable "terraform_source" {
type = string
default = null
description = "Source location to record in the Terraform_source tag. Defaults to this module path."
description = "Source location to record in the Terraform_source tag. Defaults to the caller module path when not set."
}

variable "enabled" {
Expand Down
1 change: 0 additions & 1 deletion infrastructure/modules/api-gateway/context.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
#

module "this" {
# tflint-ignore: terraform_module_pinned_source
source = "../tags"

enabled = var.enabled
Expand Down
2 changes: 2 additions & 0 deletions infrastructure/modules/api-gateway/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,8 @@ module "runner_webhook_api" {
| <a name="input_custom_name"></a> [custom\_name](#input\_custom\_name) | Optional explicit API name. When null, the name is derived from module.this.id. | `string` | `null` | no |
| <a name="input_data_classification"></a> [data\_classification](#input\_data\_classification) | Used to identify the data classification of the resource, e.g 1-5 | `string` | `"n/a"` | no |
| <a name="input_data_type"></a> [data\_type](#input\_data\_type) | The tag data\_type | `string` | `"None"` | no |
| <a name="input_default_route_throttling_burst_limit"></a> [default\_route\_throttling\_burst\_limit](#input\_default\_route\_throttling\_burst\_limit) | Burst limit applied to the stage default route settings. This must be non-zero so the generated stage does not throttle every request. | `number` | `100` | no |
| <a name="input_default_route_throttling_rate_limit"></a> [default\_route\_throttling\_rate\_limit](#input\_default\_route\_throttling\_rate\_limit) | Steady-state rate limit applied to the stage default route settings. This must be non-zero so the generated stage does not throttle every request. | `number` | `50` | no |
| <a name="input_delimiter"></a> [delimiter](#input\_delimiter) | Delimiter to be used between ID elements.<br/>Defaults to `-` (hyphen). Set to `""` to use no delimiter at all. | `string` | `null` | no |
| <a name="input_description"></a> [description](#input\_description) | Description for the HTTP API. Keep this focused on the webhook endpoint purpose. | `string` | `"HTTP API for a Lambda-backed webhook endpoint."` | no |
| <a name="input_descriptor_formats"></a> [descriptor\_formats](#input\_descriptor\_formats) | Describe additional descriptors to be output in the `descriptors` output map.<br/>Map of maps. Keys are names of descriptors. Values are maps of the form<br/>`{<br/> format = string<br/> labels = list(string)<br/>}`<br/>(Type is `any` so the map values can later be enhanced to provide additional options.)<br/>`format` is a Terraform format string to be passed to the `format()` function.<br/>`labels` is a list of labels, in order, to pass to `format()` function.<br/>Label values will be normalized before being passed to `format()` so they will be<br/>identical to how they appear in `id`.<br/>Default is `{}` (`descriptors` output will be empty). | `any` | `{}` | no |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ No resources.
| <a name="input_stack"></a> [stack](#input\_stack) | ID element. The name of the stack/component, e.g. `database`, `web`, `waf`, `eks` | `string` | `null` | no |
| <a name="input_tag_version"></a> [tag\_version](#input\_tag\_version) | Used to identify the tagging version in use | `string` | `"1.0"` | no |
| <a name="input_tags"></a> [tags](#input\_tags) | Additional tags (e.g. `{'BusinessUnit': 'XYZ'}`).<br/>Neither the tag keys nor the tag values will be modified by this module. | `map(string)` | `{}` | no |
| <a name="input_terraform_source"></a> [terraform\_source](#input\_terraform\_source) | Source location to record in the Terraform\_source tag. Defaults to this module path. | `string` | `null` | no |
| <a name="input_terraform_source"></a> [terraform\_source](#input\_terraform\_source) | Source location to record in the Terraform\_source tag. Defaults to the caller module path when not set. | `string` | `null` | no |
| <a name="input_tool"></a> [tool](#input\_tool) | The tool used to deploy the resource | `string` | `"Terraform"` | no |
| <a name="input_workspace"></a> [workspace](#input\_workspace) | ID element. The Terraform workspace, to help ensure generated IDs are unique across workspaces | `string` | `null` | no |

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ variable "context" {
variable "terraform_source" {
type = string
default = null
description = "Source location to record in the Terraform_source tag. Defaults to this module path."
description = "Source location to record in the Terraform_source tag. Defaults to the caller module path when not set."
}

variable "enabled" {
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/modules/cloudwatch-logs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ These preconditions run before resource creation and fail fast if misconfigured,
| <a name="input_stream_names"></a> [stream\_names](#input\_stream\_names) | Names of CloudWatch log streams to create within the log group. Empty list creates log group only (recommended for Lambda/ECS auto-managed streams). | `list(string)` | `[]` | no |
| <a name="input_tag_version"></a> [tag\_version](#input\_tag\_version) | Used to identify the tagging version in use | `string` | `"1.0"` | no |
| <a name="input_tags"></a> [tags](#input\_tags) | Additional tags (e.g. `{'BusinessUnit': 'XYZ'}`).<br/>Neither the tag keys nor the tag values will be modified by this module. | `map(string)` | `{}` | no |
| <a name="input_terraform_source"></a> [terraform\_source](#input\_terraform\_source) | Source location to record in the Terraform\_source tag. Defaults to this module path. | `string` | `null` | no |
| <a name="input_terraform_source"></a> [terraform\_source](#input\_terraform\_source) | Source location to record in the Terraform\_source tag. Defaults to the caller module path when not set. | `string` | `null` | no |
| <a name="input_tool"></a> [tool](#input\_tool) | The tool used to deploy the resource | `string` | `"Terraform"` | no |
| <a name="input_workspace"></a> [workspace](#input\_workspace) | ID element. The Terraform workspace, to help ensure generated IDs are unique across workspaces | `string` | `null` | no |

Expand Down
2 changes: 1 addition & 1 deletion infrastructure/modules/cloudwatch-logs/context.tf
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ variable "context" {
variable "terraform_source" {
type = string
default = null
description = "Source location to record in the Terraform_source tag. Defaults to this module path."
description = "Source location to record in the Terraform_source tag. Defaults to the caller module path when not set."
}

variable "enabled" {
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/modules/cloudwatch-metric-alarm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ No resources.
| <a name="input_stack"></a> [stack](#input\_stack) | ID element. The name of the stack/component, e.g. `database`, `web`, `waf`, `eks` | `string` | `null` | no |
| <a name="input_tag_version"></a> [tag\_version](#input\_tag\_version) | Used to identify the tagging version in use | `string` | `"1.0"` | no |
| <a name="input_tags"></a> [tags](#input\_tags) | Additional tags (e.g. `{'BusinessUnit': 'XYZ'}`).<br/>Neither the tag keys nor the tag values will be modified by this module. | `map(string)` | `{}` | no |
| <a name="input_terraform_source"></a> [terraform\_source](#input\_terraform\_source) | Source location to record in the Terraform\_source tag. Defaults to this module path. | `string` | `null` | no |
| <a name="input_terraform_source"></a> [terraform\_source](#input\_terraform\_source) | Source location to record in the Terraform\_source tag. Defaults to the caller module path when not set. | `string` | `null` | no |
| <a name="input_tool"></a> [tool](#input\_tool) | The tool used to deploy the resource | `string` | `"Terraform"` | no |
| <a name="input_treat_missing_data"></a> [treat\_missing\_data](#input\_treat\_missing\_data) | How to handle missing data points: 'notBreaching', 'breaching', 'missing', 'ignoreMetricTime'. | `string` | `"notBreaching"` | no |
| <a name="input_workspace"></a> [workspace](#input\_workspace) | ID element. The Terraform workspace, to help ensure generated IDs are unique across workspaces | `string` | `null` | no |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ variable "context" {
variable "terraform_source" {
type = string
default = null
description = "Source location to record in the Terraform_source tag. Defaults to this module path."
description = "Source location to record in the Terraform_source tag. Defaults to the caller module path when not set."
}

variable "enabled" {
Expand Down
Loading
Loading