1. Packages
  2. AWS Classic
  3. API Docs
  4. ecs
  5. Tag

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

AWS Classic v6.28.1 published on Thursday, Mar 28, 2024 by Pulumi

aws.ecs.Tag

Explore with Pulumi AI

aws logo

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

AWS Classic v6.28.1 published on Thursday, Mar 28, 2024 by Pulumi

    Manages an individual ECS resource tag. This resource should only be used in cases where ECS resources are created outside the provider (e.g., ECS Clusters implicitly created by Batch Compute Environments).

    NOTE: This tagging resource should not be combined with the resource for managing the parent resource. For example, using aws.ecs.Cluster and aws.ecs.Tag to manage tags of the same ECS Cluster will cause a perpetual difference where the aws.ecs.Cluster resource will try to remove the tag being added by the aws.ecs.Tag resource.

    NOTE: This tagging resource does not use the provider ignore_tags configuration.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.batch.ComputeEnvironment("example", {
        computeEnvironmentName: "example",
        serviceRole: exampleAwsIamRole.arn,
        type: "UNMANAGED",
    });
    const exampleTag = new aws.ecs.Tag("example", {
        resourceArn: example.ecsClusterArn,
        key: "Name",
        value: "Hello World",
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.batch.ComputeEnvironment("example",
        compute_environment_name="example",
        service_role=example_aws_iam_role["arn"],
        type="UNMANAGED")
    example_tag = aws.ecs.Tag("example",
        resource_arn=example.ecs_cluster_arn,
        key="Name",
        value="Hello World")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/batch"
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ecs"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := batch.NewComputeEnvironment(ctx, "example", &batch.ComputeEnvironmentArgs{
    			ComputeEnvironmentName: pulumi.String("example"),
    			ServiceRole:            pulumi.Any(exampleAwsIamRole.Arn),
    			Type:                   pulumi.String("UNMANAGED"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = ecs.NewTag(ctx, "example", &ecs.TagArgs{
    			ResourceArn: example.EcsClusterArn,
    			Key:         pulumi.String("Name"),
    			Value:       pulumi.String("Hello World"),
    		})
    		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 example = new Aws.Batch.ComputeEnvironment("example", new()
        {
            ComputeEnvironmentName = "example",
            ServiceRole = exampleAwsIamRole.Arn,
            Type = "UNMANAGED",
        });
    
        var exampleTag = new Aws.Ecs.Tag("example", new()
        {
            ResourceArn = example.EcsClusterArn,
            Key = "Name",
            Value = "Hello World",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.batch.ComputeEnvironment;
    import com.pulumi.aws.batch.ComputeEnvironmentArgs;
    import com.pulumi.aws.ecs.Tag;
    import com.pulumi.aws.ecs.TagArgs;
    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 example = new ComputeEnvironment("example", ComputeEnvironmentArgs.builder()        
                .computeEnvironmentName("example")
                .serviceRole(exampleAwsIamRole.arn())
                .type("UNMANAGED")
                .build());
    
            var exampleTag = new Tag("exampleTag", TagArgs.builder()        
                .resourceArn(example.ecsClusterArn())
                .key("Name")
                .value("Hello World")
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:batch:ComputeEnvironment
        properties:
          computeEnvironmentName: example
          serviceRole: ${exampleAwsIamRole.arn}
          type: UNMANAGED
      exampleTag:
        type: aws:ecs:Tag
        name: example
        properties:
          resourceArn: ${example.ecsClusterArn}
          key: Name
          value: Hello World
    

    Create Tag Resource

    new Tag(name: string, args: TagArgs, opts?: CustomResourceOptions);
    @overload
    def Tag(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            key: Optional[str] = None,
            resource_arn: Optional[str] = None,
            value: Optional[str] = None)
    @overload
    def Tag(resource_name: str,
            args: TagArgs,
            opts: Optional[ResourceOptions] = None)
    func NewTag(ctx *Context, name string, args TagArgs, opts ...ResourceOption) (*Tag, error)
    public Tag(string name, TagArgs args, CustomResourceOptions? opts = null)
    public Tag(String name, TagArgs args)
    public Tag(String name, TagArgs args, CustomResourceOptions options)
    
    type: aws:ecs:Tag
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args TagArgs
    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 TagArgs
    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 TagArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TagArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TagArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    Key string
    Tag name.
    ResourceArn string
    Amazon Resource Name (ARN) of the ECS resource to tag.
    Value string
    Tag value.
    Key string
    Tag name.
    ResourceArn string
    Amazon Resource Name (ARN) of the ECS resource to tag.
    Value string
    Tag value.
    key String
    Tag name.
    resourceArn String
    Amazon Resource Name (ARN) of the ECS resource to tag.
    value String
    Tag value.
    key string
    Tag name.
    resourceArn string
    Amazon Resource Name (ARN) of the ECS resource to tag.
    value string
    Tag value.
    key str
    Tag name.
    resource_arn str
    Amazon Resource Name (ARN) of the ECS resource to tag.
    value str
    Tag value.
    key String
    Tag name.
    resourceArn String
    Amazon Resource Name (ARN) of the ECS resource to tag.
    value String
    Tag value.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Tag Resource

    Get an existing Tag 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?: TagState, opts?: CustomResourceOptions): Tag
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            key: Optional[str] = None,
            resource_arn: Optional[str] = None,
            value: Optional[str] = None) -> Tag
    func GetTag(ctx *Context, name string, id IDInput, state *TagState, opts ...ResourceOption) (*Tag, error)
    public static Tag Get(string name, Input<string> id, TagState? state, CustomResourceOptions? opts = null)
    public static Tag get(String name, Output<String> id, TagState 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:
    Key string
    Tag name.
    ResourceArn string
    Amazon Resource Name (ARN) of the ECS resource to tag.
    Value string
    Tag value.
    Key string
    Tag name.
    ResourceArn string
    Amazon Resource Name (ARN) of the ECS resource to tag.
    Value string
    Tag value.
    key String
    Tag name.
    resourceArn String
    Amazon Resource Name (ARN) of the ECS resource to tag.
    value String
    Tag value.
    key string
    Tag name.
    resourceArn string
    Amazon Resource Name (ARN) of the ECS resource to tag.
    value string
    Tag value.
    key str
    Tag name.
    resource_arn str
    Amazon Resource Name (ARN) of the ECS resource to tag.
    value str
    Tag value.
    key String
    Tag name.
    resourceArn String
    Amazon Resource Name (ARN) of the ECS resource to tag.
    value String
    Tag value.

    Import

    Using pulumi import, import aws_ecs_tag using the ECS resource identifier and key, separated by a comma (,). For example:

    $ pulumi import aws:ecs/tag:Tag example arn:aws:ecs:us-east-1:123456789012:cluster/example,Name
    

    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.28.1 published on Thursday, Mar 28, 2024 by Pulumi