Skip to content

Commit

Permalink
feat(terraform): add aws_signer_signing_profile
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaLicense committed Mar 13, 2024
1 parent f1e4f2d commit ed5df17
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
8 changes: 6 additions & 2 deletions infra/terraform/modules/account/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@

## Providers

No providers.
| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.0.0 |

## Modules

Expand All @@ -19,7 +21,9 @@ No providers.

## Resources

No resources.
| Name | Type |
|------|------|
| [aws_signer_signing_profile.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/signer_signing_profile) | resource |

## Inputs

Expand Down
7 changes: 6 additions & 1 deletion infra/terraform/modules/account/ecr.tf
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,15 @@ module "ecr" {
scan_frequency = "SCAN_ON_PUSH"
filter = "*"
filter_type = "WILDCARD"
}, {
},
{
scan_frequency = "CONTINUOUS_SCAN"
filter = "v*"
filter_type = "WILDCARD"
}
]
}

resource "aws_signer_signing_profile" "this" {
platform_id = "Notation-OCI-SHA384-ECDSA"
}

0 comments on commit ed5df17

Please sign in to comment.