-
Notifications
You must be signed in to change notification settings - Fork 9.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a0d28af
commit 19c54b1
Showing
2 changed files
with
80 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
--- | ||
subcategory: "ECR" | ||
layout: "aws" | ||
page_title: "AWS: aws_ecrpublic_repository_policy" | ||
description: |- | ||
Provides an Elastic Container Registry Public Repository Policy. | ||
--- | ||
|
||
# Resource: aws_ecrpublic_repository_policy | ||
|
||
Provides an Elastic Container Registry Public Repository Policy. | ||
|
||
Note that currently only one policy may be applied to a repository. | ||
|
||
## Example Usage | ||
|
||
```hcl | ||
resource "aws_ecrpublic_repository" "foo" { | ||
repository_name = "bar" | ||
} | ||
resource "aws_ecr_repository_policy" "foopolicy" { | ||
repository = aws_ecrpublic_repository.foo.repository_name | ||
policy = <<EOF | ||
{ | ||
"Version": "2008-10-17", | ||
"Statement": [ | ||
{ | ||
"Sid": "new policy", | ||
"Effect": "Allow", | ||
"Principal": "*", | ||
"Action": [ | ||
"ecr:GetDownloadUrlForLayer", | ||
"ecr:BatchGetImage", | ||
"ecr:BatchCheckLayerAvailability", | ||
"ecr:PutImage", | ||
"ecr:InitiateLayerUpload", | ||
"ecr:UploadLayerPart", | ||
"ecr:CompleteLayerUpload", | ||
"ecr:DescribeRepositories", | ||
"ecr:GetRepositoryPolicy", | ||
"ecr:ListImages", | ||
"ecr:DeleteRepository", | ||
"ecr:BatchDeleteImage", | ||
"ecr:SetRepositoryPolicy", | ||
"ecr:DeleteRepositoryPolicy" | ||
] | ||
} | ||
] | ||
} | ||
EOF | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
* `repository` - (Required) Name of the repository to apply the policy. | ||
* `policy` - (Required) The policy document. This is a JSON formatted string. For more information about building IAM policy documents with Terraform, see the [AWS IAM Policy Document Guide](https://learn.hashicorp.com/terraform/aws/iam-policy) | ||
|
||
## Attributes Reference | ||
|
||
In addition to all arguments above, the following attributes are exported: | ||
|
||
* `repository` - The name of the repository. | ||
* `registry_id` - The registry ID where the repository was created. | ||
|
||
## Import | ||
|
||
ECR Public Repository Policy can be imported using the repository name, e.g. | ||
|
||
``` | ||
$ terraform import aws_ecrpublic_repository_policy.example example | ||
``` |