Try AWS Native preview for resources not in the classic version.
aws.ecrpublic.RepositoryPolicy
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Provides an Elastic Container Registry Public Repository Policy.
Note that currently only one policy may be applied to a repository.
NOTE: This resource can only be used in the
us-east-1
region.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const exampleRepository = new aws.ecrpublic.Repository("example", {repositoryName: "example"});
const example = aws.iam.getPolicyDocument({
statements: [{
sid: "new policy",
effect: "Allow",
principals: [{
type: "AWS",
identifiers: ["123456789012"],
}],
actions: [
"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",
],
}],
});
const exampleRepositoryPolicy = new aws.ecrpublic.RepositoryPolicy("example", {
repositoryName: exampleRepository.repositoryName,
policy: example.then(example => example.json),
});
import pulumi
import pulumi_aws as aws
example_repository = aws.ecrpublic.Repository("example", repository_name="example")
example = aws.iam.get_policy_document(statements=[{
"sid": "new policy",
"effect": "Allow",
"principals": [{
"type": "AWS",
"identifiers": ["123456789012"],
}],
"actions": [
"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",
],
}])
example_repository_policy = aws.ecrpublic.RepositoryPolicy("example",
repository_name=example_repository.repository_name,
policy=example.json)
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ecrpublic"
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/iam"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleRepository, err := ecrpublic.NewRepository(ctx, "example", &ecrpublic.RepositoryArgs{
RepositoryName: pulumi.String("example"),
})
if err != nil {
return err
}
example, err := iam.GetPolicyDocument(ctx, &iam.GetPolicyDocumentArgs{
Statements: []iam.GetPolicyDocumentStatement{
{
Sid: pulumi.StringRef("new policy"),
Effect: pulumi.StringRef("Allow"),
Principals: []iam.GetPolicyDocumentStatementPrincipal{
{
Type: "AWS",
Identifiers: []string{
"123456789012",
},
},
},
Actions: []string{
"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",
},
},
},
}, nil)
if err != nil {
return err
}
_, err = ecrpublic.NewRepositoryPolicy(ctx, "example", &ecrpublic.RepositoryPolicyArgs{
RepositoryName: exampleRepository.RepositoryName,
Policy: pulumi.String(example.Json),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var exampleRepository = new Aws.EcrPublic.Repository("example", new()
{
RepositoryName = "example",
});
var example = Aws.Iam.GetPolicyDocument.Invoke(new()
{
Statements = new[]
{
new Aws.Iam.Inputs.GetPolicyDocumentStatementInputArgs
{
Sid = "new policy",
Effect = "Allow",
Principals = new[]
{
new Aws.Iam.Inputs.GetPolicyDocumentStatementPrincipalInputArgs
{
Type = "AWS",
Identifiers = new[]
{
"123456789012",
},
},
},
Actions = new[]
{
"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",
},
},
},
});
var exampleRepositoryPolicy = new Aws.EcrPublic.RepositoryPolicy("example", new()
{
RepositoryName = exampleRepository.RepositoryName,
Policy = example.Apply(getPolicyDocumentResult => getPolicyDocumentResult.Json),
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.ecrpublic.Repository;
import com.pulumi.aws.ecrpublic.RepositoryArgs;
import com.pulumi.aws.iam.IamFunctions;
import com.pulumi.aws.iam.inputs.GetPolicyDocumentArgs;
import com.pulumi.aws.ecrpublic.RepositoryPolicy;
import com.pulumi.aws.ecrpublic.RepositoryPolicyArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var exampleRepository = new Repository("exampleRepository", RepositoryArgs.builder()
.repositoryName("example")
.build());
final var example = IamFunctions.getPolicyDocument(GetPolicyDocumentArgs.builder()
.statements(GetPolicyDocumentStatementArgs.builder()
.sid("new policy")
.effect("Allow")
.principals(GetPolicyDocumentStatementPrincipalArgs.builder()
.type("AWS")
.identifiers("123456789012")
.build())
.actions(
"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")
.build())
.build());
var exampleRepositoryPolicy = new RepositoryPolicy("exampleRepositoryPolicy", RepositoryPolicyArgs.builder()
.repositoryName(exampleRepository.repositoryName())
.policy(example.applyValue(getPolicyDocumentResult -> getPolicyDocumentResult.json()))
.build());
}
}
resources:
exampleRepository:
type: aws:ecrpublic:Repository
name: example
properties:
repositoryName: example
exampleRepositoryPolicy:
type: aws:ecrpublic:RepositoryPolicy
name: example
properties:
repositoryName: ${exampleRepository.repositoryName}
policy: ${example.json}
variables:
example:
fn::invoke:
Function: aws:iam:getPolicyDocument
Arguments:
statements:
- sid: new policy
effect: Allow
principals:
- type: AWS
identifiers:
- '123456789012'
actions:
- 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
Create RepositoryPolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RepositoryPolicy(name: string, args: RepositoryPolicyArgs, opts?: CustomResourceOptions);
@overload
def RepositoryPolicy(resource_name: str,
args: RepositoryPolicyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def RepositoryPolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
policy: Optional[str] = None,
repository_name: Optional[str] = None)
func NewRepositoryPolicy(ctx *Context, name string, args RepositoryPolicyArgs, opts ...ResourceOption) (*RepositoryPolicy, error)
public RepositoryPolicy(string name, RepositoryPolicyArgs args, CustomResourceOptions? opts = null)
public RepositoryPolicy(String name, RepositoryPolicyArgs args)
public RepositoryPolicy(String name, RepositoryPolicyArgs args, CustomResourceOptions options)
type: aws:ecrpublic:RepositoryPolicy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args RepositoryPolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args RepositoryPolicyArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args RepositoryPolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RepositoryPolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RepositoryPolicyArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var awsRepositoryPolicyResource = new Aws.EcrPublic.RepositoryPolicy("awsRepositoryPolicyResource", new()
{
Policy = "string",
RepositoryName = "string",
});
example, err := ecrpublic.NewRepositoryPolicy(ctx, "awsRepositoryPolicyResource", &ecrpublic.RepositoryPolicyArgs{
Policy: pulumi.String("string"),
RepositoryName: pulumi.String("string"),
})
var awsRepositoryPolicyResource = new RepositoryPolicy("awsRepositoryPolicyResource", RepositoryPolicyArgs.builder()
.policy("string")
.repositoryName("string")
.build());
aws_repository_policy_resource = aws.ecrpublic.RepositoryPolicy("awsRepositoryPolicyResource",
policy="string",
repository_name="string")
const awsRepositoryPolicyResource = new aws.ecrpublic.RepositoryPolicy("awsRepositoryPolicyResource", {
policy: "string",
repositoryName: "string",
});
type: aws:ecrpublic:RepositoryPolicy
properties:
policy: string
repositoryName: string
RepositoryPolicy Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The RepositoryPolicy resource accepts the following input properties:
- Policy string
- The policy document. This is a JSON formatted string.
- Repository
Name string - Name of the repository to apply the policy.
- Policy string
- The policy document. This is a JSON formatted string.
- Repository
Name string - Name of the repository to apply the policy.
- policy String
- The policy document. This is a JSON formatted string.
- repository
Name String - Name of the repository to apply the policy.
- policy string
- The policy document. This is a JSON formatted string.
- repository
Name string - Name of the repository to apply the policy.
- policy str
- The policy document. This is a JSON formatted string.
- repository_
name str - Name of the repository to apply the policy.
- policy String
- The policy document. This is a JSON formatted string.
- repository
Name String - Name of the repository to apply the policy.
Outputs
All input properties are implicitly available as output properties. Additionally, the RepositoryPolicy resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Registry
Id string - The registry ID where the repository was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Registry
Id string - The registry ID where the repository was created.
- id String
- The provider-assigned unique ID for this managed resource.
- registry
Id String - The registry ID where the repository was created.
- id string
- The provider-assigned unique ID for this managed resource.
- registry
Id string - The registry ID where the repository was created.
- id str
- The provider-assigned unique ID for this managed resource.
- registry_
id str - The registry ID where the repository was created.
- id String
- The provider-assigned unique ID for this managed resource.
- registry
Id String - The registry ID where the repository was created.
Look up Existing RepositoryPolicy Resource
Get an existing RepositoryPolicy resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: RepositoryPolicyState, opts?: CustomResourceOptions): RepositoryPolicy
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
policy: Optional[str] = None,
registry_id: Optional[str] = None,
repository_name: Optional[str] = None) -> RepositoryPolicy
func GetRepositoryPolicy(ctx *Context, name string, id IDInput, state *RepositoryPolicyState, opts ...ResourceOption) (*RepositoryPolicy, error)
public static RepositoryPolicy Get(string name, Input<string> id, RepositoryPolicyState? state, CustomResourceOptions? opts = null)
public static RepositoryPolicy get(String name, Output<String> id, RepositoryPolicyState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Policy string
- The policy document. This is a JSON formatted string.
- Registry
Id string - The registry ID where the repository was created.
- Repository
Name string - Name of the repository to apply the policy.
- Policy string
- The policy document. This is a JSON formatted string.
- Registry
Id string - The registry ID where the repository was created.
- Repository
Name string - Name of the repository to apply the policy.
- policy String
- The policy document. This is a JSON formatted string.
- registry
Id String - The registry ID where the repository was created.
- repository
Name String - Name of the repository to apply the policy.
- policy string
- The policy document. This is a JSON formatted string.
- registry
Id string - The registry ID where the repository was created.
- repository
Name string - Name of the repository to apply the policy.
- policy str
- The policy document. This is a JSON formatted string.
- registry_
id str - The registry ID where the repository was created.
- repository_
name str - Name of the repository to apply the policy.
- policy String
- The policy document. This is a JSON formatted string.
- registry
Id String - The registry ID where the repository was created.
- repository
Name String - Name of the repository to apply the policy.
Import
Using pulumi import
, import ECR Public Repository Policy using the repository name. For example:
$ pulumi import aws:ecrpublic/repositoryPolicy:RepositoryPolicy example example
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.
Try AWS Native preview for resources not in the classic version.