diff --git a/README.md b/README.md index 2e79565..b969649 100644 --- a/README.md +++ b/README.md @@ -436,6 +436,27 @@ Available targets: | aws | >= 2.0 | | random | >= 2.0 | +## Modules + +| Name | Source | Version | +|------|--------|---------| +| ecs_web_app | cloudposse/ecs-web-app/aws | 0.54.0 | +| github_webhooks | cloudposse/repository-webhooks/github | 0.12.0 | +| ssh_key_pair | cloudposse/ssm-tls-ssh-key-pair/aws | 0.10.0 | +| this | cloudposse/label/null | 0.24.1 | + +## Resources + +| Name | +|------| +| [aws_iam_role_policy_attachment](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role_policy_attachment) | +| [aws_kms_key](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/kms_key) | +| [aws_route53_record](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/route53_record) | +| [aws_security_group_rule](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/security_group_rule) | +| [aws_ssm_parameter](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/ssm_parameter) | +| [aws_ssm_parameter](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ssm_parameter) | +| [random_string](https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/string) | + ## Inputs | Name | Description | Type | Default | Required | @@ -604,7 +625,6 @@ Available targets: | httpcode\_target\_5xx\_count\_cloudwatch\_metric\_alarm\_id | ALB Target Group 5xx count CloudWatch metric alarm ID | | target\_response\_time\_average\_cloudwatch\_metric\_alarm\_arn | ALB Target Group response time average CloudWatch metric alarm ARN | | target\_response\_time\_average\_cloudwatch\_metric\_alarm\_id | ALB Target Group response time average CloudWatch metric alarm ID | - diff --git a/docs/terraform.md b/docs/terraform.md index 39db2d5..071d6b4 100644 --- a/docs/terraform.md +++ b/docs/terraform.md @@ -14,6 +14,27 @@ | aws | >= 2.0 | | random | >= 2.0 | +## Modules + +| Name | Source | Version | +|------|--------|---------| +| ecs_web_app | cloudposse/ecs-web-app/aws | 0.54.0 | +| github_webhooks | cloudposse/repository-webhooks/github | 0.12.0 | +| ssh_key_pair | cloudposse/ssm-tls-ssh-key-pair/aws | 0.10.0 | +| this | cloudposse/label/null | 0.24.1 | + +## Resources + +| Name | +|------| +| [aws_iam_role_policy_attachment](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role_policy_attachment) | +| [aws_kms_key](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/kms_key) | +| [aws_route53_record](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/route53_record) | +| [aws_security_group_rule](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/security_group_rule) | +| [aws_ssm_parameter](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/ssm_parameter) | +| [aws_ssm_parameter](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ssm_parameter) | +| [random_string](https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/string) | + ## Inputs | Name | Description | Type | Default | Required | @@ -182,5 +203,4 @@ | httpcode\_target\_5xx\_count\_cloudwatch\_metric\_alarm\_id | ALB Target Group 5xx count CloudWatch metric alarm ID | | target\_response\_time\_average\_cloudwatch\_metric\_alarm\_arn | ALB Target Group response time average CloudWatch metric alarm ARN | | target\_response\_time\_average\_cloudwatch\_metric\_alarm\_id | ALB Target Group response time average CloudWatch metric alarm ID | - diff --git a/outputs.tf b/outputs.tf index 5928d0d..a030a13 100644 --- a/outputs.tf +++ b/outputs.tf @@ -46,11 +46,13 @@ output "alb_ingress_target_group_arn_suffix" { output "container_definition_json" { description = "JSON encoded list of container definitions for use with other terraform resources such as aws_ecs_task_definition" value = module.ecs_web_app.container_definition_json + sensitive = true } output "container_definition_json_map" { description = "JSON encoded container definitions for use with other terraform resources such as aws_ecs_task_definition" value = module.ecs_web_app.container_definition_json_map + sensitive = true } output "ecs_exec_role_policy_id" {