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

ibm.CdTektonPipelineProperty

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_propertys with this resource.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const cdTektonPipelinePropertyInstance = new ibm.CdTektonPipelineProperty("cdTektonPipelinePropertyInstance", {
        pipelineId: "94619026-912b-4d92-8f51-6c74f0692d90",
        type: "text",
        value: "https://github.com/open-toolchain/hello-tekton.git",
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    cd_tekton_pipeline_property_instance = ibm.CdTektonPipelineProperty("cdTektonPipelinePropertyInstance",
        pipeline_id="94619026-912b-4d92-8f51-6c74f0692d90",
        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.NewCdTektonPipelineProperty(ctx, "cdTektonPipelinePropertyInstance", &ibm.CdTektonPipelinePropertyArgs{
    			PipelineId: pulumi.String("94619026-912b-4d92-8f51-6c74f0692d90"),
    			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 cdTektonPipelinePropertyInstance = new Ibm.CdTektonPipelineProperty("cdTektonPipelinePropertyInstance", new()
        {
            PipelineId = "94619026-912b-4d92-8f51-6c74f0692d90",
            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.CdTektonPipelineProperty;
    import com.pulumi.ibm.CdTektonPipelinePropertyArgs;
    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 cdTektonPipelinePropertyInstance = new CdTektonPipelineProperty("cdTektonPipelinePropertyInstance", CdTektonPipelinePropertyArgs.builder()
                .pipelineId("94619026-912b-4d92-8f51-6c74f0692d90")
                .type("text")
                .value("https://github.com/open-toolchain/hello-tekton.git")
                .build());
    
        }
    }
    
    resources:
      cdTektonPipelinePropertyInstance:
        type: ibm:CdTektonPipelineProperty
        properties:
          pipelineId: 94619026-912b-4d92-8f51-6c74f0692d90
          type: text
          value: https://github.com/open-toolchain/hello-tekton.git
    

    Create CdTektonPipelineProperty Resource

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

    Constructor syntax

    new CdTektonPipelineProperty(name: string, args: CdTektonPipelinePropertyArgs, opts?: CustomResourceOptions);
    @overload
    def CdTektonPipelineProperty(resource_name: str,
                                 args: CdTektonPipelinePropertyInitArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def CdTektonPipelineProperty(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 pipeline_id: Optional[str] = None,
                                 type: Optional[str] = None,
                                 cd_tekton_pipeline_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 NewCdTektonPipelineProperty(ctx *Context, name string, args CdTektonPipelinePropertyArgs, opts ...ResourceOption) (*CdTektonPipelineProperty, error)
    public CdTektonPipelineProperty(string name, CdTektonPipelinePropertyArgs args, CustomResourceOptions? opts = null)
    public CdTektonPipelineProperty(String name, CdTektonPipelinePropertyArgs args)
    public CdTektonPipelineProperty(String name, CdTektonPipelinePropertyArgs args, CustomResourceOptions options)
    
    type: ibm:CdTektonPipelineProperty
    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 CdTektonPipelinePropertyArgs
    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 CdTektonPipelinePropertyInitArgs
    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 CdTektonPipelinePropertyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CdTektonPipelinePropertyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CdTektonPipelinePropertyArgs
    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 cdTektonPipelinePropertyResource = new Ibm.CdTektonPipelineProperty("cdTektonPipelinePropertyResource", new()
    {
        PipelineId = "string",
        Type = "string",
        CdTektonPipelinePropertyId = "string",
        Enums = new[]
        {
            "string",
        },
        Locked = false,
        Name = "string",
        Path = "string",
        Value = "string",
    });
    
    example, err := ibm.NewCdTektonPipelineProperty(ctx, "cdTektonPipelinePropertyResource", &ibm.CdTektonPipelinePropertyArgs{
    	PipelineId:                 pulumi.String("string"),
    	Type:                       pulumi.String("string"),
    	CdTektonPipelinePropertyId: 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 cdTektonPipelinePropertyResource = new CdTektonPipelineProperty("cdTektonPipelinePropertyResource", CdTektonPipelinePropertyArgs.builder()
        .pipelineId("string")
        .type("string")
        .cdTektonPipelinePropertyId("string")
        .enums("string")
        .locked(false)
        .name("string")
        .path("string")
        .value("string")
        .build());
    
    cd_tekton_pipeline_property_resource = ibm.CdTektonPipelineProperty("cdTektonPipelinePropertyResource",
        pipeline_id="string",
        type="string",
        cd_tekton_pipeline_property_id="string",
        enums=["string"],
        locked=False,
        name="string",
        path="string",
        value="string")
    
    const cdTektonPipelinePropertyResource = new ibm.CdTektonPipelineProperty("cdTektonPipelinePropertyResource", {
        pipelineId: "string",
        type: "string",
        cdTektonPipelinePropertyId: "string",
        enums: ["string"],
        locked: false,
        name: "string",
        path: "string",
        value: "string",
    });
    
    type: ibm:CdTektonPipelineProperty
    properties:
        cdTektonPipelinePropertyId: string
        enums:
            - string
        locked: false
        name: string
        path: string
        pipelineId: string
        type: string
        value: string
    

    CdTektonPipelineProperty 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 CdTektonPipelineProperty 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]+$/.
    Type string
    Property type.

    • Constraints: Allowable values are: secure, text, integration, single_select, appconfig.
    CdTektonPipelinePropertyId string
    The unique identifier of the cd_tekton_pipeline_property.
    Enums List<string>
    Options for single_select property type. Only needed when using 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 by a trigger property or 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]+$/.
    Type string
    Property type.

    • Constraints: Allowable values are: secure, text, integration, single_select, appconfig.
    CdTektonPipelinePropertyId string
    The unique identifier of the cd_tekton_pipeline_property.
    Enums []string
    Options for single_select property type. Only needed when using 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 by a trigger property or 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]+$/.
    type String
    Property type.

    • Constraints: Allowable values are: secure, text, integration, single_select, appconfig.
    cdTektonPipelinePropertyId String
    The unique identifier of the cd_tekton_pipeline_property.
    enums List<String>
    Options for single_select property type. Only needed when using 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 by a trigger property or 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]+$/.
    type string
    Property type.

    • Constraints: Allowable values are: secure, text, integration, single_select, appconfig.
    cdTektonPipelinePropertyId string
    The unique identifier of the cd_tekton_pipeline_property.
    enums string[]
    Options for single_select property type. Only needed when using 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 by a trigger property or 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]+$/.
    type str
    Property type.

    • Constraints: Allowable values are: secure, text, integration, single_select, appconfig.
    cd_tekton_pipeline_property_id str
    The unique identifier of the cd_tekton_pipeline_property.
    enums Sequence[str]
    Options for single_select property type. Only needed when using 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 by a trigger property or 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]+$/.
    type String
    Property type.

    • Constraints: Allowable values are: secure, text, integration, single_select, appconfig.
    cdTektonPipelinePropertyId String
    The unique identifier of the cd_tekton_pipeline_property.
    enums List<String>
    Options for single_select property type. Only needed when using 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 by a trigger property or 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 CdTektonPipelineProperty resource produces the following output properties:

    Href string
    (String) API URL for interacting with the 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 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 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 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 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 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 CdTektonPipelineProperty Resource

    Get an existing CdTektonPipelineProperty 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?: CdTektonPipelinePropertyState, opts?: CustomResourceOptions): CdTektonPipelineProperty
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cd_tekton_pipeline_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,
            type: Optional[str] = None,
            value: Optional[str] = None) -> CdTektonPipelineProperty
    func GetCdTektonPipelineProperty(ctx *Context, name string, id IDInput, state *CdTektonPipelinePropertyState, opts ...ResourceOption) (*CdTektonPipelineProperty, error)
    public static CdTektonPipelineProperty Get(string name, Input<string> id, CdTektonPipelinePropertyState? state, CustomResourceOptions? opts = null)
    public static CdTektonPipelineProperty get(String name, Output<String> id, CdTektonPipelinePropertyState state, CustomResourceOptions options)
    resources:  _:    type: ibm:CdTektonPipelineProperty    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:
    CdTektonPipelinePropertyId string
    The unique identifier of the cd_tekton_pipeline_property.
    Enums List<string>
    Options for single_select property type. Only needed when using 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 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 by a trigger property or 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]+$/.
    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 /^.*$/.
    CdTektonPipelinePropertyId string
    The unique identifier of the cd_tekton_pipeline_property.
    Enums []string
    Options for single_select property type. Only needed when using 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 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 by a trigger property or 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]+$/.
    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 /^.*$/.
    cdTektonPipelinePropertyId String
    The unique identifier of the cd_tekton_pipeline_property.
    enums List<String>
    Options for single_select property type. Only needed when using 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 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 by a trigger property or 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]+$/.
    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 /^.*$/.
    cdTektonPipelinePropertyId string
    The unique identifier of the cd_tekton_pipeline_property.
    enums string[]
    Options for single_select property type. Only needed when using 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 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 by a trigger property or 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]+$/.
    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_property_id str
    The unique identifier of the cd_tekton_pipeline_property.
    enums Sequence[str]
    Options for single_select property type. Only needed when using 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 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 by a trigger property or 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]+$/.
    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 /^.*$/.
    cdTektonPipelinePropertyId String
    The unique identifier of the cd_tekton_pipeline_property.
    enums List<String>
    Options for single_select property type. Only needed when using 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 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 by a trigger property or 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]+$/.
    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_property resource by using name.

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

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

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

    Syntax

    
    ```sh
    $ pulumi import ibm:index/cdTektonPipelineProperty:CdTektonPipelineProperty cd_tekton_pipeline_property <pipeline_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