Skip to content

Commit

Permalink
🔧 (terraform): Remove dupicate ACM SAN
Browse files Browse the repository at this point in the history
  • Loading branch information
gabe565 committed Jun 25, 2023
1 parent 5f20311 commit eaedc7b
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 6 deletions.
15 changes: 15 additions & 0 deletions terraform/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions terraform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@

| Name | Version |
|------|---------|
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | 5.2.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | 5.4.0 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.2.0 |
| <a name="provider_aws.us-east-1"></a> [aws.us-east-1](#provider\_aws.us-east-1) | 5.2.0 |
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.4.0 |
| <a name="provider_aws.us-east-1"></a> [aws.us-east-1](#provider\_aws.us-east-1) | 5.4.0 |

## Modules

Expand All @@ -25,8 +25,8 @@

| Name | Type |
|------|------|
| [aws_acm_certificate.app](https://registry.terraform.io/providers/hashicorp/aws/5.2.0/docs/resources/acm_certificate) | resource |
| [aws_caller_identity.current](https://registry.terraform.io/providers/hashicorp/aws/5.2.0/docs/data-sources/caller_identity) | data source |
| [aws_acm_certificate.app](https://registry.terraform.io/providers/hashicorp/aws/5.4.0/docs/resources/acm_certificate) | resource |
| [aws_caller_identity.current](https://registry.terraform.io/providers/hashicorp/aws/5.4.0/docs/data-sources/caller_identity) | data source |

## Inputs

Expand Down
2 changes: 1 addition & 1 deletion terraform/acm_certificate.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resource "aws_acm_certificate" "app" {
domain_name = "mnemonic.ninja"
validation_method = "DNS"

subject_alternative_names = ["*.mnemonic.ninja", "mnemonic.ninja"]
subject_alternative_names = ["*.mnemonic.ninja"]

tags = {
app = "mnemonic-ninja"
Expand Down

0 comments on commit eaedc7b

Please sign in to comment.