1. Packages
  2. Ibm Provider
  3. API Docs
  4. CdTektonPipelineTriggerProperty
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

ibm.CdTektonPipelineTriggerProperty

Explore with Pulumi AI

ibm logo
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

    Create, update, and delete cd_tekton_pipeline_trigger_propertys with this resource.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const cdTektonPipelineTriggerPropertyInstance = new ibm.CdTektonPipelineTriggerProperty("cdTektonPipelineTriggerPropertyInstance", {
        pipelineId: "94619026-912b-4d92-8f51-6c74f0692d90",
        triggerId: "1bb892a1-2e04-4768-a369-b1159eace147",
        type: "text",
        value: "https://github.com/open-toolchain/hello-tekton.git",
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    cd_tekton_pipeline_trigger_property_instance = ibm.CdTektonPipelineTriggerProperty("cdTektonPipelineTriggerPropertyInstance",
        pipeline_id="94619026-912b-4d92-8f51-6c74f0692d90",
        trigger_id="1bb892a1-2e04-4768-a369-b1159eace147",
        type="text",
        value="https://github.com/open-toolchain/hello-tekton.git")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ibm.NewCdTektonPipelineTriggerProperty(ctx, "cdTektonPipelineTriggerPropertyInstance", &ibm.CdTektonPipelineTriggerPropertyArgs{
    			PipelineId: pulumi.String("94619026-912b-4d92-8f51-6c74f0692d90"),
    			TriggerId:  pulumi.String("1bb892a1-2e04-4768-a369-b1159eace147"),
    			Type:       pulumi.String("text"),
    			Value:      pulumi.String("https://github.com/open-toolchain/hello-tekton.git"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ibm = Pulumi.Ibm;
    
    return await Deployment.RunAsync(() => 
    {
        var cdTektonPipelineTriggerPropertyInstance = new Ibm.CdTektonPipelineTriggerProperty("cdTektonPipelineTriggerPropertyInstance", new()
        {
            PipelineId = "94619026-912b-4d92-8f51-6c74f0692d90",
            TriggerId = "1bb892a1-2e04-4768-a369-b1159eace147",
            Type = "text",
            Value = "https://github.com/open-toolchain/hello-tekton.git",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.CdTektonPipelineTriggerProperty;
    import com.pulumi.ibm.CdTektonPipelineTriggerPropertyArgs;
    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 cdTektonPipelineTriggerPropertyInstance = new CdTektonPipelineTriggerProperty("cdTektonPipelineTriggerPropertyInstance", CdTektonPipelineTriggerPropertyArgs.builder()
                .pipelineId("94619026-912b-4d92-8f51-6c74f0692d90")
                .triggerId("1bb892a1-2e04-4768-a369-b1159eace147")
                .type("text")
                .value("https://github.com/open-toolchain/hello-tekton.git")
                .build());
    
        }
    }
    
    resources:
      cdTektonPipelineTriggerPropertyInstance:
        type: ibm:CdTektonPipelineTriggerProperty
        properties:
          pipelineId: 94619026-912b-4d92-8f51-6c74f0692d90
          triggerId: 1bb892a1-2e04-4768-a369-b1159eace147
          type: text
          value: https://github.com/open-toolchain/hello-tekton.git
    

    Create CdTektonPipelineTriggerProperty Resource

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

    Constructor syntax

    new CdTektonPipelineTriggerProperty(name: string, args: CdTektonPipelineTriggerPropertyArgs, opts?: CustomResourceOptions);
    @overload
    def CdTektonPipelineTriggerProperty(resource_name: str,
                                        args: CdTektonPipelineTriggerPropertyInitArgs,
                                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def CdTektonPipelineTriggerProperty(resource_name: str,
                                        opts: Optional[ResourceOptions] = None,
                                        pipeline_id: Optional[str] = None,
                                        trigger_id: Optional[str] = None,
                                        type: Optional[str] = None,
                                        cd_tekton_pipeline_trigger_property_id: Optional[str] = None,
                                        enums: Optional[Sequence[str]] = None,
                                        locked: Optional[bool] = None,
                                        name: Optional[str] = None,
                                        path: Optional[str] = None,
                                        value: Optional[str] = None)
    func NewCdTektonPipelineTriggerProperty(ctx *Context, name string, args CdTektonPipelineTriggerPropertyArgs, opts ...ResourceOption) (*CdTektonPipelineTriggerProperty, error)
    public CdTektonPipelineTriggerProperty(string name, CdTektonPipelineTriggerPropertyArgs args, CustomResourceOptions? opts = null)
    public CdTektonPipelineTriggerProperty(String name, CdTektonPipelineTriggerPropertyArgs args)
    public CdTektonPipelineTriggerProperty(String name, CdTektonPipelineTriggerPropertyArgs args, CustomResourceOptions options)
    
    type: ibm:CdTektonPipelineTriggerProperty
    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 CdTektonPipelineTriggerPropertyArgs
    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 CdTektonPipelineTriggerPropertyInitArgs
    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 CdTektonPipelineTriggerPropertyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CdTektonPipelineTriggerPropertyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CdTektonPipelineTriggerPropertyArgs
    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 cdTektonPipelineTriggerPropertyResource = new Ibm.CdTektonPipelineTriggerProperty("cdTektonPipelineTriggerPropertyResource", new()
    {
        PipelineId = "string",
        TriggerId = "string",
        Type = "string",
        CdTektonPipelineTriggerPropertyId = "string",
        Enums = new[]
        {
            "string",
        },
        Locked = false,
        Name = "string",
        Path = "string",
        Value = "string",
    });
    
    example, err := ibm.NewCdTektonPipelineTriggerProperty(ctx, "cdTektonPipelineTriggerPropertyResource", &ibm.CdTektonPipelineTriggerPropertyArgs{
    	PipelineId:                        pulumi.String("string"),
    	TriggerId:                         pulumi.String("string"),
    	Type:                              pulumi.String("string"),
    	CdTektonPipelineTriggerPropertyId: pulumi.String("string"),
    	Enums: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Locked: pulumi.Bool(false),
    	Name:   pulumi.String("string"),
    	Path:   pulumi.String("string"),
    	Value:  pulumi.String("string"),
    })
    
    var cdTektonPipelineTriggerPropertyResource = new CdTektonPipelineTriggerProperty("cdTektonPipelineTriggerPropertyResource", CdTektonPipelineTriggerPropertyArgs.builder()
        .pipelineId("string")
        .triggerId("string")
        .type("string")
        .cdTektonPipelineTriggerPropertyId("string")
        .enums("string")
        .locked(false)
        .name("string")
        .path("string")
        .value("string")
        .build());
    
    cd_tekton_pipeline_trigger_property_resource = ibm.CdTektonPipelineTriggerProperty("cdTektonPipelineTriggerPropertyResource",
        pipeline_id="string",
        trigger_id="string",
        type="string",
        cd_tekton_pipeline_trigger_property_id="string",
        enums=["string"],
        locked=False,
        name="string",
        path="string",
        value="string")
    
    const cdTektonPipelineTriggerPropertyResource = new ibm.CdTektonPipelineTriggerProperty("cdTektonPipelineTriggerPropertyResource", {
        pipelineId: "string",
        triggerId: "string",
        type: "string",
        cdTektonPipelineTriggerPropertyId: "string",
        enums: ["string"],
        locked: false,
        name: "string",
        path: "string",
        value: "string",
    });
    
    type: ibm:CdTektonPipelineTriggerProperty
    properties:
        cdTektonPipelineTriggerPropertyId: string
        enums:
            - string
        locked: false
        name: string
        path: string
        pipelineId: string
        triggerId: string
        type: string
        value: string
    

    CdTektonPipelineTriggerProperty Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The CdTektonPipelineTriggerProperty resource accepts the following input properties:

    PipelineId string
    The Tekton pipeline ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[-0-9a-z]+$/.
    TriggerId string
    The trigger ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[-0-9a-z]+$/.
    Type string
    Property type.

    • Constraints: Allowable values are: secure, text, integration, single_select, appconfig.
    CdTektonPipelineTriggerPropertyId string
    The unique identifier of the cd_tekton_pipeline_trigger_property.
    Enums List<string>
    Options for single_select property type. Only needed for single_select property type.

    • Constraints: The list items must match regular expression /^[-0-9a-zA-Z_.]{1,253}$/. The maximum length is 256 items. The minimum length is 0 items.
    Locked bool
    When true, this property cannot be overridden at runtime. Attempting to override it will result in run requests being rejected. The default is false.
    Name string
    Property name.

    • Constraints: The maximum length is 253 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-zA-Z_.]{1,253}$/.
    Path string
    A dot notation path for integration type properties only, that selects a value from the tool integration. If left blank the full tool integration data will be used.

    • Constraints: The maximum length is 4096 characters. The minimum length is 0 characters. The value must match regular expression /^[-0-9a-zA-Z_.]*$/.
    Value string
    Property value. Any string value is valid.

    • Constraints: The maximum length is 4096 characters. The minimum length is 0 characters. The value must match regular expression /^.*$/.
    PipelineId string
    The Tekton pipeline ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[-0-9a-z]+$/.
    TriggerId string
    The trigger ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[-0-9a-z]+$/.
    Type string
    Property type.

    • Constraints: Allowable values are: secure, text, integration, single_select, appconfig.
    CdTektonPipelineTriggerPropertyId string
    The unique identifier of the cd_tekton_pipeline_trigger_property.
    Enums []string
    Options for single_select property type. Only needed for single_select property type.

    • Constraints: The list items must match regular expression /^[-0-9a-zA-Z_.]{1,253}$/. The maximum length is 256 items. The minimum length is 0 items.
    Locked bool
    When true, this property cannot be overridden at runtime. Attempting to override it will result in run requests being rejected. The default is false.
    Name string
    Property name.

    • Constraints: The maximum length is 253 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-zA-Z_.]{1,253}$/.
    Path string
    A dot notation path for integration type properties only, that selects a value from the tool integration. If left blank the full tool integration data will be used.

    • Constraints: The maximum length is 4096 characters. The minimum length is 0 characters. The value must match regular expression /^[-0-9a-zA-Z_.]*$/.
    Value string
    Property value. Any string value is valid.

    • Constraints: The maximum length is 4096 characters. The minimum length is 0 characters. The value must match regular expression /^.*$/.
    pipelineId String
    The Tekton pipeline ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[-0-9a-z]+$/.
    triggerId String
    The trigger ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[-0-9a-z]+$/.
    type String
    Property type.

    • Constraints: Allowable values are: secure, text, integration, single_select, appconfig.
    cdTektonPipelineTriggerPropertyId String
    The unique identifier of the cd_tekton_pipeline_trigger_property.
    enums List<String>
    Options for single_select property type. Only needed for single_select property type.

    • Constraints: The list items must match regular expression /^[-0-9a-zA-Z_.]{1,253}$/. The maximum length is 256 items. The minimum length is 0 items.
    locked Boolean
    When true, this property cannot be overridden at runtime. Attempting to override it will result in run requests being rejected. The default is false.
    name String
    Property name.

    • Constraints: The maximum length is 253 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-zA-Z_.]{1,253}$/.
    path String
    A dot notation path for integration type properties only, that selects a value from the tool integration. If left blank the full tool integration data will be used.

    • Constraints: The maximum length is 4096 characters. The minimum length is 0 characters. The value must match regular expression /^[-0-9a-zA-Z_.]*$/.
    value String
    Property value. Any string value is valid.

    • Constraints: The maximum length is 4096 characters. The minimum length is 0 characters. The value must match regular expression /^.*$/.
    pipelineId string
    The Tekton pipeline ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[-0-9a-z]+$/.
    triggerId string
    The trigger ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[-0-9a-z]+$/.
    type string
    Property type.

    • Constraints: Allowable values are: secure, text, integration, single_select, appconfig.
    cdTektonPipelineTriggerPropertyId string
    The unique identifier of the cd_tekton_pipeline_trigger_property.
    enums string[]
    Options for single_select property type. Only needed for single_select property type.

    • Constraints: The list items must match regular expression /^[-0-9a-zA-Z_.]{1,253}$/. The maximum length is 256 items. The minimum length is 0 items.
    locked boolean
    When true, this property cannot be overridden at runtime. Attempting to override it will result in run requests being rejected. The default is false.
    name string
    Property name.

    • Constraints: The maximum length is 253 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-zA-Z_.]{1,253}$/.
    path string
    A dot notation path for integration type properties only, that selects a value from the tool integration. If left blank the full tool integration data will be used.

    • Constraints: The maximum length is 4096 characters. The minimum length is 0 characters. The value must match regular expression /^[-0-9a-zA-Z_.]*$/.
    value string
    Property value. Any string value is valid.

    • Constraints: The maximum length is 4096 characters. The minimum length is 0 characters. The value must match regular expression /^.*$/.
    pipeline_id str
    The Tekton pipeline ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[-0-9a-z]+$/.
    trigger_id str
    The trigger ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[-0-9a-z]+$/.
    type str
    Property type.

    • Constraints: Allowable values are: secure, text, integration, single_select, appconfig.
    cd_tekton_pipeline_trigger_property_id str
    The unique identifier of the cd_tekton_pipeline_trigger_property.
    enums Sequence[str]
    Options for single_select property type. Only needed for single_select property type.

    • Constraints: The list items must match regular expression /^[-0-9a-zA-Z_.]{1,253}$/. The maximum length is 256 items. The minimum length is 0 items.
    locked bool
    When true, this property cannot be overridden at runtime. Attempting to override it will result in run requests being rejected. The default is false.
    name str
    Property name.

    • Constraints: The maximum length is 253 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-zA-Z_.]{1,253}$/.
    path str
    A dot notation path for integration type properties only, that selects a value from the tool integration. If left blank the full tool integration data will be used.

    • Constraints: The maximum length is 4096 characters. The minimum length is 0 characters. The value must match regular expression /^[-0-9a-zA-Z_.]*$/.
    value str
    Property value. Any string value is valid.

    • Constraints: The maximum length is 4096 characters. The minimum length is 0 characters. The value must match regular expression /^.*$/.
    pipelineId String
    The Tekton pipeline ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[-0-9a-z]+$/.
    triggerId String
    The trigger ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[-0-9a-z]+$/.
    type String
    Property type.

    • Constraints: Allowable values are: secure, text, integration, single_select, appconfig.
    cdTektonPipelineTriggerPropertyId String
    The unique identifier of the cd_tekton_pipeline_trigger_property.
    enums List<String>
    Options for single_select property type. Only needed for single_select property type.

    • Constraints: The list items must match regular expression /^[-0-9a-zA-Z_.]{1,253}$/. The maximum length is 256 items. The minimum length is 0 items.
    locked Boolean
    When true, this property cannot be overridden at runtime. Attempting to override it will result in run requests being rejected. The default is false.
    name String
    Property name.

    • Constraints: The maximum length is 253 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-zA-Z_.]{1,253}$/.
    path String
    A dot notation path for integration type properties only, that selects a value from the tool integration. If left blank the full tool integration data will be used.

    • Constraints: The maximum length is 4096 characters. The minimum length is 0 characters. The value must match regular expression /^[-0-9a-zA-Z_.]*$/.
    value String
    Property value. Any string value is valid.

    • Constraints: The maximum length is 4096 characters. The minimum length is 0 characters. The value must match regular expression /^.*$/.

    Outputs

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

    Href string
    (String) API URL for interacting with the trigger property.

    • Constraints: The maximum length is 2048 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    Id string
    The provider-assigned unique ID for this managed resource.
    Href string
    (String) API URL for interacting with the trigger property.

    • Constraints: The maximum length is 2048 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    Id string
    The provider-assigned unique ID for this managed resource.
    href String
    (String) API URL for interacting with the trigger property.

    • Constraints: The maximum length is 2048 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    id String
    The provider-assigned unique ID for this managed resource.
    href string
    (String) API URL for interacting with the trigger property.

    • Constraints: The maximum length is 2048 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    id string
    The provider-assigned unique ID for this managed resource.
    href str
    (String) API URL for interacting with the trigger property.

    • Constraints: The maximum length is 2048 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    id str
    The provider-assigned unique ID for this managed resource.
    href String
    (String) API URL for interacting with the trigger property.

    • Constraints: The maximum length is 2048 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing CdTektonPipelineTriggerProperty Resource

    Get an existing CdTektonPipelineTriggerProperty 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?: CdTektonPipelineTriggerPropertyState, opts?: CustomResourceOptions): CdTektonPipelineTriggerProperty
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cd_tekton_pipeline_trigger_property_id: Optional[str] = None,
            enums: Optional[Sequence[str]] = None,
            href: Optional[str] = None,
            locked: Optional[bool] = None,
            name: Optional[str] = None,
            path: Optional[str] = None,
            pipeline_id: Optional[str] = None,
            trigger_id: Optional[str] = None,
            type: Optional[str] = None,
            value: Optional[str] = None) -> CdTektonPipelineTriggerProperty
    func GetCdTektonPipelineTriggerProperty(ctx *Context, name string, id IDInput, state *CdTektonPipelineTriggerPropertyState, opts ...ResourceOption) (*CdTektonPipelineTriggerProperty, error)
    public static CdTektonPipelineTriggerProperty Get(string name, Input<string> id, CdTektonPipelineTriggerPropertyState? state, CustomResourceOptions? opts = null)
    public static CdTektonPipelineTriggerProperty get(String name, Output<String> id, CdTektonPipelineTriggerPropertyState state, CustomResourceOptions options)
    resources:  _:    type: ibm:CdTektonPipelineTriggerProperty    get:      id: ${id}
    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:
    CdTektonPipelineTriggerPropertyId string
    The unique identifier of the cd_tekton_pipeline_trigger_property.
    Enums List<string>
    Options for single_select property type. Only needed for single_select property type.

    • Constraints: The list items must match regular expression /^[-0-9a-zA-Z_.]{1,253}$/. The maximum length is 256 items. The minimum length is 0 items.
    Href string
    (String) API URL for interacting with the trigger property.

    • Constraints: The maximum length is 2048 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    Locked bool
    When true, this property cannot be overridden at runtime. Attempting to override it will result in run requests being rejected. The default is false.
    Name string
    Property name.

    • Constraints: The maximum length is 253 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-zA-Z_.]{1,253}$/.
    Path string
    A dot notation path for integration type properties only, that selects a value from the tool integration. If left blank the full tool integration data will be used.

    • Constraints: The maximum length is 4096 characters. The minimum length is 0 characters. The value must match regular expression /^[-0-9a-zA-Z_.]*$/.
    PipelineId string
    The Tekton pipeline ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[-0-9a-z]+$/.
    TriggerId string
    The trigger ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[-0-9a-z]+$/.
    Type string
    Property type.

    • Constraints: Allowable values are: secure, text, integration, single_select, appconfig.
    Value string
    Property value. Any string value is valid.

    • Constraints: The maximum length is 4096 characters. The minimum length is 0 characters. The value must match regular expression /^.*$/.
    CdTektonPipelineTriggerPropertyId string
    The unique identifier of the cd_tekton_pipeline_trigger_property.
    Enums []string
    Options for single_select property type. Only needed for single_select property type.

    • Constraints: The list items must match regular expression /^[-0-9a-zA-Z_.]{1,253}$/. The maximum length is 256 items. The minimum length is 0 items.
    Href string
    (String) API URL for interacting with the trigger property.

    • Constraints: The maximum length is 2048 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    Locked bool
    When true, this property cannot be overridden at runtime. Attempting to override it will result in run requests being rejected. The default is false.
    Name string
    Property name.

    • Constraints: The maximum length is 253 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-zA-Z_.]{1,253}$/.
    Path string
    A dot notation path for integration type properties only, that selects a value from the tool integration. If left blank the full tool integration data will be used.

    • Constraints: The maximum length is 4096 characters. The minimum length is 0 characters. The value must match regular expression /^[-0-9a-zA-Z_.]*$/.
    PipelineId string
    The Tekton pipeline ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[-0-9a-z]+$/.
    TriggerId string
    The trigger ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[-0-9a-z]+$/.
    Type string
    Property type.

    • Constraints: Allowable values are: secure, text, integration, single_select, appconfig.
    Value string
    Property value. Any string value is valid.

    • Constraints: The maximum length is 4096 characters. The minimum length is 0 characters. The value must match regular expression /^.*$/.
    cdTektonPipelineTriggerPropertyId String
    The unique identifier of the cd_tekton_pipeline_trigger_property.
    enums List<String>
    Options for single_select property type. Only needed for single_select property type.

    • Constraints: The list items must match regular expression /^[-0-9a-zA-Z_.]{1,253}$/. The maximum length is 256 items. The minimum length is 0 items.
    href String
    (String) API URL for interacting with the trigger property.

    • Constraints: The maximum length is 2048 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    locked Boolean
    When true, this property cannot be overridden at runtime. Attempting to override it will result in run requests being rejected. The default is false.
    name String
    Property name.

    • Constraints: The maximum length is 253 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-zA-Z_.]{1,253}$/.
    path String
    A dot notation path for integration type properties only, that selects a value from the tool integration. If left blank the full tool integration data will be used.

    • Constraints: The maximum length is 4096 characters. The minimum length is 0 characters. The value must match regular expression /^[-0-9a-zA-Z_.]*$/.
    pipelineId String
    The Tekton pipeline ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[-0-9a-z]+$/.
    triggerId String
    The trigger ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[-0-9a-z]+$/.
    type String
    Property type.

    • Constraints: Allowable values are: secure, text, integration, single_select, appconfig.
    value String
    Property value. Any string value is valid.

    • Constraints: The maximum length is 4096 characters. The minimum length is 0 characters. The value must match regular expression /^.*$/.
    cdTektonPipelineTriggerPropertyId string
    The unique identifier of the cd_tekton_pipeline_trigger_property.
    enums string[]
    Options for single_select property type. Only needed for single_select property type.

    • Constraints: The list items must match regular expression /^[-0-9a-zA-Z_.]{1,253}$/. The maximum length is 256 items. The minimum length is 0 items.
    href string
    (String) API URL for interacting with the trigger property.

    • Constraints: The maximum length is 2048 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    locked boolean
    When true, this property cannot be overridden at runtime. Attempting to override it will result in run requests being rejected. The default is false.
    name string
    Property name.

    • Constraints: The maximum length is 253 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-zA-Z_.]{1,253}$/.
    path string
    A dot notation path for integration type properties only, that selects a value from the tool integration. If left blank the full tool integration data will be used.

    • Constraints: The maximum length is 4096 characters. The minimum length is 0 characters. The value must match regular expression /^[-0-9a-zA-Z_.]*$/.
    pipelineId string
    The Tekton pipeline ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[-0-9a-z]+$/.
    triggerId string
    The trigger ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[-0-9a-z]+$/.
    type string
    Property type.

    • Constraints: Allowable values are: secure, text, integration, single_select, appconfig.
    value string
    Property value. Any string value is valid.

    • Constraints: The maximum length is 4096 characters. The minimum length is 0 characters. The value must match regular expression /^.*$/.
    cd_tekton_pipeline_trigger_property_id str
    The unique identifier of the cd_tekton_pipeline_trigger_property.
    enums Sequence[str]
    Options for single_select property type. Only needed for single_select property type.

    • Constraints: The list items must match regular expression /^[-0-9a-zA-Z_.]{1,253}$/. The maximum length is 256 items. The minimum length is 0 items.
    href str
    (String) API URL for interacting with the trigger property.

    • Constraints: The maximum length is 2048 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    locked bool
    When true, this property cannot be overridden at runtime. Attempting to override it will result in run requests being rejected. The default is false.
    name str
    Property name.

    • Constraints: The maximum length is 253 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-zA-Z_.]{1,253}$/.
    path str
    A dot notation path for integration type properties only, that selects a value from the tool integration. If left blank the full tool integration data will be used.

    • Constraints: The maximum length is 4096 characters. The minimum length is 0 characters. The value must match regular expression /^[-0-9a-zA-Z_.]*$/.
    pipeline_id str
    The Tekton pipeline ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[-0-9a-z]+$/.
    trigger_id str
    The trigger ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[-0-9a-z]+$/.
    type str
    Property type.

    • Constraints: Allowable values are: secure, text, integration, single_select, appconfig.
    value str
    Property value. Any string value is valid.

    • Constraints: The maximum length is 4096 characters. The minimum length is 0 characters. The value must match regular expression /^.*$/.
    cdTektonPipelineTriggerPropertyId String
    The unique identifier of the cd_tekton_pipeline_trigger_property.
    enums List<String>
    Options for single_select property type. Only needed for single_select property type.

    • Constraints: The list items must match regular expression /^[-0-9a-zA-Z_.]{1,253}$/. The maximum length is 256 items. The minimum length is 0 items.
    href String
    (String) API URL for interacting with the trigger property.

    • Constraints: The maximum length is 2048 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    locked Boolean
    When true, this property cannot be overridden at runtime. Attempting to override it will result in run requests being rejected. The default is false.
    name String
    Property name.

    • Constraints: The maximum length is 253 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-zA-Z_.]{1,253}$/.
    path String
    A dot notation path for integration type properties only, that selects a value from the tool integration. If left blank the full tool integration data will be used.

    • Constraints: The maximum length is 4096 characters. The minimum length is 0 characters. The value must match regular expression /^[-0-9a-zA-Z_.]*$/.
    pipelineId String
    The Tekton pipeline ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[-0-9a-z]+$/.
    triggerId String
    The trigger ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[-0-9a-z]+$/.
    type String
    Property type.

    • Constraints: Allowable values are: secure, text, integration, single_select, appconfig.
    value String
    Property value. Any string value is valid.

    • Constraints: The maximum length is 4096 characters. The minimum length is 0 characters. The value must match regular expression /^.*$/.

    Import

    You can import the ibm_cd_tekton_pipeline_trigger_property resource by using name.

    The name property can be formed from pipeline_id, trigger_id, and name in the following format:

    
    <pipeline_id>/<trigger_id>/<name>
    
    
    • pipeline_id: A string in the format 94619026-912b-4d92-8f51-6c74f0692d90. The Tekton pipeline ID.

    • trigger_id: A string in the format 1bb892a1-2e04-4768-a369-b1159eace147. The trigger ID.

    • name: A string in the format prop1. Property name.

    Syntax

    
    ```sh
    $ pulumi import ibm:index/cdTektonPipelineTriggerProperty:CdTektonPipelineTriggerProperty cd_tekton_pipeline_trigger_property <pipeline_id>/<trigger_id>/<name>
    ```
    
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    ibm ibm-cloud/terraform-provider-ibm
    License
    Notes
    This Pulumi package is based on the ibm Terraform Provider.
    ibm logo
    ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud