1. Packages
  2. AWS Classic
  3. API Docs
  4. codeartifact
  5. RepositoryPermissionsPolicy

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.31.0 published on Monday, Apr 15, 2024 by Pulumi

aws.codeartifact.RepositoryPermissionsPolicy

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.31.0 published on Monday, Apr 15, 2024 by Pulumi

    Provides a CodeArtifact Repostory Permissions Policy Resource.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const exampleKey = new aws.kms.Key("example", {description: "domain key"});
    const exampleDomain = new aws.codeartifact.Domain("example", {
        domain: "example",
        encryptionKey: exampleKey.arn,
    });
    const exampleRepository = new aws.codeartifact.Repository("example", {
        repository: "example",
        domain: exampleDomain.domain,
    });
    const example = aws.iam.getPolicyDocumentOutput({
        statements: [{
            effect: "Allow",
            principals: [{
                type: "*",
                identifiers: ["*"],
            }],
            actions: ["codeartifact:ReadFromRepository"],
            resources: [exampleRepository.arn],
        }],
    });
    const exampleRepositoryPermissionsPolicy = new aws.codeartifact.RepositoryPermissionsPolicy("example", {
        repository: exampleRepository.repository,
        domain: exampleDomain.domain,
        policyDocument: example.apply(example => example.json),
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example_key = aws.kms.Key("example", description="domain key")
    example_domain = aws.codeartifact.Domain("example",
        domain="example",
        encryption_key=example_key.arn)
    example_repository = aws.codeartifact.Repository("example",
        repository="example",
        domain=example_domain.domain)
    example = aws.iam.get_policy_document_output(statements=[aws.iam.GetPolicyDocumentStatementArgs(
        effect="Allow",
        principals=[aws.iam.GetPolicyDocumentStatementPrincipalArgs(
            type="*",
            identifiers=["*"],
        )],
        actions=["codeartifact:ReadFromRepository"],
        resources=[example_repository.arn],
    )])
    example_repository_permissions_policy = aws.codeartifact.RepositoryPermissionsPolicy("example",
        repository=example_repository.repository,
        domain=example_domain.domain,
        policy_document=example.json)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/codeartifact"
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/iam"
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/kms"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleKey, err := kms.NewKey(ctx, "example", &kms.KeyArgs{
    			Description: pulumi.String("domain key"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleDomain, err := codeartifact.NewDomain(ctx, "example", &codeartifact.DomainArgs{
    			Domain:        pulumi.String("example"),
    			EncryptionKey: exampleKey.Arn,
    		})
    		if err != nil {
    			return err
    		}
    		exampleRepository, err := codeartifact.NewRepository(ctx, "example", &codeartifact.RepositoryArgs{
    			Repository: pulumi.String("example"),
    			Domain:     exampleDomain.Domain,
    		})
    		if err != nil {
    			return err
    		}
    		example := iam.GetPolicyDocumentOutput(ctx, iam.GetPolicyDocumentOutputArgs{
    			Statements: iam.GetPolicyDocumentStatementArray{
    				&iam.GetPolicyDocumentStatementArgs{
    					Effect: pulumi.String("Allow"),
    					Principals: iam.GetPolicyDocumentStatementPrincipalArray{
    						&iam.GetPolicyDocumentStatementPrincipalArgs{
    							Type: pulumi.String("*"),
    							Identifiers: pulumi.StringArray{
    								pulumi.String("*"),
    							},
    						},
    					},
    					Actions: pulumi.StringArray{
    						pulumi.String("codeartifact:ReadFromRepository"),
    					},
    					Resources: pulumi.StringArray{
    						exampleRepository.Arn,
    					},
    				},
    			},
    		}, nil)
    		_, err = codeartifact.NewRepositoryPermissionsPolicy(ctx, "example", &codeartifact.RepositoryPermissionsPolicyArgs{
    			Repository: exampleRepository.Repository,
    			Domain:     exampleDomain.Domain,
    			PolicyDocument: example.ApplyT(func(example iam.GetPolicyDocumentResult) (*string, error) {
    				return &example.Json, nil
    			}).(pulumi.StringPtrOutput),
    		})
    		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 exampleKey = new Aws.Kms.Key("example", new()
        {
            Description = "domain key",
        });
    
        var exampleDomain = new Aws.CodeArtifact.Domain("example", new()
        {
            DomainName = "example",
            EncryptionKey = exampleKey.Arn,
        });
    
        var exampleRepository = new Aws.CodeArtifact.Repository("example", new()
        {
            RepositoryName = "example",
            Domain = exampleDomain.DomainName,
        });
    
        var example = Aws.Iam.GetPolicyDocument.Invoke(new()
        {
            Statements = new[]
            {
                new Aws.Iam.Inputs.GetPolicyDocumentStatementInputArgs
                {
                    Effect = "Allow",
                    Principals = new[]
                    {
                        new Aws.Iam.Inputs.GetPolicyDocumentStatementPrincipalInputArgs
                        {
                            Type = "*",
                            Identifiers = new[]
                            {
                                "*",
                            },
                        },
                    },
                    Actions = new[]
                    {
                        "codeartifact:ReadFromRepository",
                    },
                    Resources = new[]
                    {
                        exampleRepository.Arn,
                    },
                },
            },
        });
    
        var exampleRepositoryPermissionsPolicy = new Aws.CodeArtifact.RepositoryPermissionsPolicy("example", new()
        {
            Repository = exampleRepository.RepositoryName,
            Domain = exampleDomain.DomainName,
            PolicyDocument = 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.kms.Key;
    import com.pulumi.aws.kms.KeyArgs;
    import com.pulumi.aws.codeartifact.Domain;
    import com.pulumi.aws.codeartifact.DomainArgs;
    import com.pulumi.aws.codeartifact.Repository;
    import com.pulumi.aws.codeartifact.RepositoryArgs;
    import com.pulumi.aws.iam.IamFunctions;
    import com.pulumi.aws.iam.inputs.GetPolicyDocumentArgs;
    import com.pulumi.aws.codeartifact.RepositoryPermissionsPolicy;
    import com.pulumi.aws.codeartifact.RepositoryPermissionsPolicyArgs;
    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 exampleKey = new Key("exampleKey", KeyArgs.builder()        
                .description("domain key")
                .build());
    
            var exampleDomain = new Domain("exampleDomain", DomainArgs.builder()        
                .domain("example")
                .encryptionKey(exampleKey.arn())
                .build());
    
            var exampleRepository = new Repository("exampleRepository", RepositoryArgs.builder()        
                .repository("example")
                .domain(exampleDomain.domain())
                .build());
    
            final var example = IamFunctions.getPolicyDocument(GetPolicyDocumentArgs.builder()
                .statements(GetPolicyDocumentStatementArgs.builder()
                    .effect("Allow")
                    .principals(GetPolicyDocumentStatementPrincipalArgs.builder()
                        .type("*")
                        .identifiers("*")
                        .build())
                    .actions("codeartifact:ReadFromRepository")
                    .resources(exampleRepository.arn())
                    .build())
                .build());
    
            var exampleRepositoryPermissionsPolicy = new RepositoryPermissionsPolicy("exampleRepositoryPermissionsPolicy", RepositoryPermissionsPolicyArgs.builder()        
                .repository(exampleRepository.repository())
                .domain(exampleDomain.domain())
                .policyDocument(example.applyValue(getPolicyDocumentResult -> getPolicyDocumentResult).applyValue(example -> example.applyValue(getPolicyDocumentResult -> getPolicyDocumentResult.json())))
                .build());
    
        }
    }
    
    resources:
      exampleKey:
        type: aws:kms:Key
        name: example
        properties:
          description: domain key
      exampleDomain:
        type: aws:codeartifact:Domain
        name: example
        properties:
          domain: example
          encryptionKey: ${exampleKey.arn}
      exampleRepository:
        type: aws:codeartifact:Repository
        name: example
        properties:
          repository: example
          domain: ${exampleDomain.domain}
      exampleRepositoryPermissionsPolicy:
        type: aws:codeartifact:RepositoryPermissionsPolicy
        name: example
        properties:
          repository: ${exampleRepository.repository}
          domain: ${exampleDomain.domain}
          policyDocument: ${example.json}
    variables:
      example:
        fn::invoke:
          Function: aws:iam:getPolicyDocument
          Arguments:
            statements:
              - effect: Allow
                principals:
                  - type: '*'
                    identifiers:
                      - '*'
                actions:
                  - codeartifact:ReadFromRepository
                resources:
                  - ${exampleRepository.arn}
    

    Create RepositoryPermissionsPolicy Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new RepositoryPermissionsPolicy(name: string, args: RepositoryPermissionsPolicyArgs, opts?: CustomResourceOptions);
    @overload
    def RepositoryPermissionsPolicy(resource_name: str,
                                    args: RepositoryPermissionsPolicyArgs,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def RepositoryPermissionsPolicy(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    domain: Optional[str] = None,
                                    policy_document: Optional[str] = None,
                                    repository: Optional[str] = None,
                                    domain_owner: Optional[str] = None,
                                    policy_revision: Optional[str] = None)
    func NewRepositoryPermissionsPolicy(ctx *Context, name string, args RepositoryPermissionsPolicyArgs, opts ...ResourceOption) (*RepositoryPermissionsPolicy, error)
    public RepositoryPermissionsPolicy(string name, RepositoryPermissionsPolicyArgs args, CustomResourceOptions? opts = null)
    public RepositoryPermissionsPolicy(String name, RepositoryPermissionsPolicyArgs args)
    public RepositoryPermissionsPolicy(String name, RepositoryPermissionsPolicyArgs args, CustomResourceOptions options)
    
    type: aws:codeartifact:RepositoryPermissionsPolicy
    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 RepositoryPermissionsPolicyArgs
    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 RepositoryPermissionsPolicyArgs
    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 RepositoryPermissionsPolicyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RepositoryPermissionsPolicyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RepositoryPermissionsPolicyArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var repositoryPermissionsPolicyResource = new Aws.CodeArtifact.RepositoryPermissionsPolicy("repositoryPermissionsPolicyResource", new()
    {
        Domain = "string",
        PolicyDocument = "string",
        Repository = "string",
        DomainOwner = "string",
        PolicyRevision = "string",
    });
    
    example, err := codeartifact.NewRepositoryPermissionsPolicy(ctx, "repositoryPermissionsPolicyResource", &codeartifact.RepositoryPermissionsPolicyArgs{
    	Domain:         pulumi.String("string"),
    	PolicyDocument: pulumi.String("string"),
    	Repository:     pulumi.String("string"),
    	DomainOwner:    pulumi.String("string"),
    	PolicyRevision: pulumi.String("string"),
    })
    
    var repositoryPermissionsPolicyResource = new RepositoryPermissionsPolicy("repositoryPermissionsPolicyResource", RepositoryPermissionsPolicyArgs.builder()        
        .domain("string")
        .policyDocument("string")
        .repository("string")
        .domainOwner("string")
        .policyRevision("string")
        .build());
    
    repository_permissions_policy_resource = aws.codeartifact.RepositoryPermissionsPolicy("repositoryPermissionsPolicyResource",
        domain="string",
        policy_document="string",
        repository="string",
        domain_owner="string",
        policy_revision="string")
    
    const repositoryPermissionsPolicyResource = new aws.codeartifact.RepositoryPermissionsPolicy("repositoryPermissionsPolicyResource", {
        domain: "string",
        policyDocument: "string",
        repository: "string",
        domainOwner: "string",
        policyRevision: "string",
    });
    
    type: aws:codeartifact:RepositoryPermissionsPolicy
    properties:
        domain: string
        domainOwner: string
        policyDocument: string
        policyRevision: string
        repository: string
    

    RepositoryPermissionsPolicy 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 RepositoryPermissionsPolicy resource accepts the following input properties:

    Domain string
    The name of the domain on which to set the resource policy.
    PolicyDocument string
    A JSON policy string to be set as the access control resource policy on the provided domain.
    Repository string
    The name of the repository to set the resource policy on.
    DomainOwner string
    The account number of the AWS account that owns the domain.
    PolicyRevision string
    The current revision of the resource policy to be set. This revision is used for optimistic locking, which prevents others from overwriting your changes to the domain's resource policy.
    Domain string
    The name of the domain on which to set the resource policy.
    PolicyDocument string
    A JSON policy string to be set as the access control resource policy on the provided domain.
    Repository string
    The name of the repository to set the resource policy on.
    DomainOwner string
    The account number of the AWS account that owns the domain.
    PolicyRevision string
    The current revision of the resource policy to be set. This revision is used for optimistic locking, which prevents others from overwriting your changes to the domain's resource policy.
    domain String
    The name of the domain on which to set the resource policy.
    policyDocument String
    A JSON policy string to be set as the access control resource policy on the provided domain.
    repository String
    The name of the repository to set the resource policy on.
    domainOwner String
    The account number of the AWS account that owns the domain.
    policyRevision String
    The current revision of the resource policy to be set. This revision is used for optimistic locking, which prevents others from overwriting your changes to the domain's resource policy.
    domain string
    The name of the domain on which to set the resource policy.
    policyDocument string
    A JSON policy string to be set as the access control resource policy on the provided domain.
    repository string
    The name of the repository to set the resource policy on.
    domainOwner string
    The account number of the AWS account that owns the domain.
    policyRevision string
    The current revision of the resource policy to be set. This revision is used for optimistic locking, which prevents others from overwriting your changes to the domain's resource policy.
    domain str
    The name of the domain on which to set the resource policy.
    policy_document str
    A JSON policy string to be set as the access control resource policy on the provided domain.
    repository str
    The name of the repository to set the resource policy on.
    domain_owner str
    The account number of the AWS account that owns the domain.
    policy_revision str
    The current revision of the resource policy to be set. This revision is used for optimistic locking, which prevents others from overwriting your changes to the domain's resource policy.
    domain String
    The name of the domain on which to set the resource policy.
    policyDocument String
    A JSON policy string to be set as the access control resource policy on the provided domain.
    repository String
    The name of the repository to set the resource policy on.
    domainOwner String
    The account number of the AWS account that owns the domain.
    policyRevision String
    The current revision of the resource policy to be set. This revision is used for optimistic locking, which prevents others from overwriting your changes to the domain's resource policy.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the RepositoryPermissionsPolicy resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceArn string
    The ARN of the resource associated with the resource policy.
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceArn string
    The ARN of the resource associated with the resource policy.
    id String
    The provider-assigned unique ID for this managed resource.
    resourceArn String
    The ARN of the resource associated with the resource policy.
    id string
    The provider-assigned unique ID for this managed resource.
    resourceArn string
    The ARN of the resource associated with the resource policy.
    id str
    The provider-assigned unique ID for this managed resource.
    resource_arn str
    The ARN of the resource associated with the resource policy.
    id String
    The provider-assigned unique ID for this managed resource.
    resourceArn String
    The ARN of the resource associated with the resource policy.

    Look up Existing RepositoryPermissionsPolicy Resource

    Get an existing RepositoryPermissionsPolicy 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?: RepositoryPermissionsPolicyState, opts?: CustomResourceOptions): RepositoryPermissionsPolicy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            domain: Optional[str] = None,
            domain_owner: Optional[str] = None,
            policy_document: Optional[str] = None,
            policy_revision: Optional[str] = None,
            repository: Optional[str] = None,
            resource_arn: Optional[str] = None) -> RepositoryPermissionsPolicy
    func GetRepositoryPermissionsPolicy(ctx *Context, name string, id IDInput, state *RepositoryPermissionsPolicyState, opts ...ResourceOption) (*RepositoryPermissionsPolicy, error)
    public static RepositoryPermissionsPolicy Get(string name, Input<string> id, RepositoryPermissionsPolicyState? state, CustomResourceOptions? opts = null)
    public static RepositoryPermissionsPolicy get(String name, Output<String> id, RepositoryPermissionsPolicyState 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.
    The following state arguments are supported:
    Domain string
    The name of the domain on which to set the resource policy.
    DomainOwner string
    The account number of the AWS account that owns the domain.
    PolicyDocument string
    A JSON policy string to be set as the access control resource policy on the provided domain.
    PolicyRevision string
    The current revision of the resource policy to be set. This revision is used for optimistic locking, which prevents others from overwriting your changes to the domain's resource policy.
    Repository string
    The name of the repository to set the resource policy on.
    ResourceArn string
    The ARN of the resource associated with the resource policy.
    Domain string
    The name of the domain on which to set the resource policy.
    DomainOwner string
    The account number of the AWS account that owns the domain.
    PolicyDocument string
    A JSON policy string to be set as the access control resource policy on the provided domain.
    PolicyRevision string
    The current revision of the resource policy to be set. This revision is used for optimistic locking, which prevents others from overwriting your changes to the domain's resource policy.
    Repository string
    The name of the repository to set the resource policy on.
    ResourceArn string
    The ARN of the resource associated with the resource policy.
    domain String
    The name of the domain on which to set the resource policy.
    domainOwner String
    The account number of the AWS account that owns the domain.
    policyDocument String
    A JSON policy string to be set as the access control resource policy on the provided domain.
    policyRevision String
    The current revision of the resource policy to be set. This revision is used for optimistic locking, which prevents others from overwriting your changes to the domain's resource policy.
    repository String
    The name of the repository to set the resource policy on.
    resourceArn String
    The ARN of the resource associated with the resource policy.
    domain string
    The name of the domain on which to set the resource policy.
    domainOwner string
    The account number of the AWS account that owns the domain.
    policyDocument string
    A JSON policy string to be set as the access control resource policy on the provided domain.
    policyRevision string
    The current revision of the resource policy to be set. This revision is used for optimistic locking, which prevents others from overwriting your changes to the domain's resource policy.
    repository string
    The name of the repository to set the resource policy on.
    resourceArn string
    The ARN of the resource associated with the resource policy.
    domain str
    The name of the domain on which to set the resource policy.
    domain_owner str
    The account number of the AWS account that owns the domain.
    policy_document str
    A JSON policy string to be set as the access control resource policy on the provided domain.
    policy_revision str
    The current revision of the resource policy to be set. This revision is used for optimistic locking, which prevents others from overwriting your changes to the domain's resource policy.
    repository str
    The name of the repository to set the resource policy on.
    resource_arn str
    The ARN of the resource associated with the resource policy.
    domain String
    The name of the domain on which to set the resource policy.
    domainOwner String
    The account number of the AWS account that owns the domain.
    policyDocument String
    A JSON policy string to be set as the access control resource policy on the provided domain.
    policyRevision String
    The current revision of the resource policy to be set. This revision is used for optimistic locking, which prevents others from overwriting your changes to the domain's resource policy.
    repository String
    The name of the repository to set the resource policy on.
    resourceArn String
    The ARN of the resource associated with the resource policy.

    Import

    Using pulumi import, import CodeArtifact Repository Permissions Policies using the CodeArtifact Repository ARN. For example:

    $ pulumi import aws:codeartifact/repositoryPermissionsPolicy:RepositoryPermissionsPolicy example arn:aws:codeartifact:us-west-2:012345678912:repository/tf-acc-test-6968272603913957763/tf-acc-test-6968272603913957763
    

    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.
    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.31.0 published on Monday, Apr 15, 2024 by Pulumi