1. Packages
  2. Ibm Provider
  3. API Docs
  4. getCdToolchainToolSecretsmanager
ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud

ibm.getCdToolchainToolSecretsmanager

Explore with Pulumi AI

ibm logo
ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud

    Provides a read-only data source to retrieve information about a cd_toolchain_tool_secretsmanager. You can then reference the fields of the data source in other resources within the same configuration by using interpolation syntax.

    See the tool integration page for more information.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const cdToolchainToolSecretsmanager = ibm.getCdToolchainToolSecretsmanager({
        toolId: "9603dcd4-3c86-44f8-8d0a-9427369878cf",
        toolchainId: data.ibm_cd_toolchain.cd_toolchain.id,
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    cd_toolchain_tool_secretsmanager = ibm.get_cd_toolchain_tool_secretsmanager(tool_id="9603dcd4-3c86-44f8-8d0a-9427369878cf",
        toolchain_id=data["ibm_cd_toolchain"]["cd_toolchain"]["id"])
    
    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.LookupCdToolchainToolSecretsmanager(ctx, &ibm.LookupCdToolchainToolSecretsmanagerArgs{
    			ToolId:      "9603dcd4-3c86-44f8-8d0a-9427369878cf",
    			ToolchainId: data.Ibm_cd_toolchain.Cd_toolchain.Id,
    		}, nil)
    		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 cdToolchainToolSecretsmanager = Ibm.GetCdToolchainToolSecretsmanager.Invoke(new()
        {
            ToolId = "9603dcd4-3c86-44f8-8d0a-9427369878cf",
            ToolchainId = data.Ibm_cd_toolchain.Cd_toolchain.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.IbmFunctions;
    import com.pulumi.ibm.inputs.GetCdToolchainToolSecretsmanagerArgs;
    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) {
            final var cdToolchainToolSecretsmanager = IbmFunctions.getCdToolchainToolSecretsmanager(GetCdToolchainToolSecretsmanagerArgs.builder()
                .toolId("9603dcd4-3c86-44f8-8d0a-9427369878cf")
                .toolchainId(data.ibm_cd_toolchain().cd_toolchain().id())
                .build());
    
        }
    }
    
    variables:
      cdToolchainToolSecretsmanager:
        fn::invoke:
          function: ibm:getCdToolchainToolSecretsmanager
          arguments:
            toolId: 9603dcd4-3c86-44f8-8d0a-9427369878cf
            toolchainId: ${data.ibm_cd_toolchain.cd_toolchain.id}
    

    Using getCdToolchainToolSecretsmanager

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getCdToolchainToolSecretsmanager(args: GetCdToolchainToolSecretsmanagerArgs, opts?: InvokeOptions): Promise<GetCdToolchainToolSecretsmanagerResult>
    function getCdToolchainToolSecretsmanagerOutput(args: GetCdToolchainToolSecretsmanagerOutputArgs, opts?: InvokeOptions): Output<GetCdToolchainToolSecretsmanagerResult>
    def get_cd_toolchain_tool_secretsmanager(id: Optional[str] = None,
                                             tool_id: Optional[str] = None,
                                             toolchain_id: Optional[str] = None,
                                             opts: Optional[InvokeOptions] = None) -> GetCdToolchainToolSecretsmanagerResult
    def get_cd_toolchain_tool_secretsmanager_output(id: Optional[pulumi.Input[str]] = None,
                                             tool_id: Optional[pulumi.Input[str]] = None,
                                             toolchain_id: Optional[pulumi.Input[str]] = None,
                                             opts: Optional[InvokeOptions] = None) -> Output[GetCdToolchainToolSecretsmanagerResult]
    func LookupCdToolchainToolSecretsmanager(ctx *Context, args *LookupCdToolchainToolSecretsmanagerArgs, opts ...InvokeOption) (*LookupCdToolchainToolSecretsmanagerResult, error)
    func LookupCdToolchainToolSecretsmanagerOutput(ctx *Context, args *LookupCdToolchainToolSecretsmanagerOutputArgs, opts ...InvokeOption) LookupCdToolchainToolSecretsmanagerResultOutput

    > Note: This function is named LookupCdToolchainToolSecretsmanager in the Go SDK.

    public static class GetCdToolchainToolSecretsmanager 
    {
        public static Task<GetCdToolchainToolSecretsmanagerResult> InvokeAsync(GetCdToolchainToolSecretsmanagerArgs args, InvokeOptions? opts = null)
        public static Output<GetCdToolchainToolSecretsmanagerResult> Invoke(GetCdToolchainToolSecretsmanagerInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetCdToolchainToolSecretsmanagerResult> getCdToolchainToolSecretsmanager(GetCdToolchainToolSecretsmanagerArgs args, InvokeOptions options)
    public static Output<GetCdToolchainToolSecretsmanagerResult> getCdToolchainToolSecretsmanager(GetCdToolchainToolSecretsmanagerArgs args, InvokeOptions options)
    
    fn::invoke:
      function: ibm:index/getCdToolchainToolSecretsmanager:getCdToolchainToolSecretsmanager
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ToolId string
    ID of the tool bound to the toolchain.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
    ToolchainId string
    ID of the toolchain.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
    Id string
    The unique identifier of the cd_toolchain_tool_secretsmanager.
    ToolId string
    ID of the tool bound to the toolchain.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
    ToolchainId string
    ID of the toolchain.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
    Id string
    The unique identifier of the cd_toolchain_tool_secretsmanager.
    toolId String
    ID of the tool bound to the toolchain.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
    toolchainId String
    ID of the toolchain.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
    id String
    The unique identifier of the cd_toolchain_tool_secretsmanager.
    toolId string
    ID of the tool bound to the toolchain.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
    toolchainId string
    ID of the toolchain.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
    id string
    The unique identifier of the cd_toolchain_tool_secretsmanager.
    tool_id str
    ID of the tool bound to the toolchain.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
    toolchain_id str
    ID of the toolchain.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
    id str
    The unique identifier of the cd_toolchain_tool_secretsmanager.
    toolId String
    ID of the tool bound to the toolchain.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
    toolchainId String
    ID of the toolchain.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
    id String
    The unique identifier of the cd_toolchain_tool_secretsmanager.

    getCdToolchainToolSecretsmanager Result

    The following output properties are available:

    Crn string
    (String) Tool CRN.
    Href string
    (String) URI representing the tool.
    Id string
    The unique identifier of the cd_toolchain_tool_secretsmanager.
    Name string
    (String) The name used to identify this tool integration. Secret references include this name to identify the secrets store where the secrets reside. All secrets store tools integrated into a toolchain should have a unique name to allow secret resolution to function properly.
    Parameters List<GetCdToolchainToolSecretsmanagerParameter>
    (List) Unique key-value pairs representing parameters to be used to create the tool. A list of parameters for each tool integration can be found in the Configuring tool integrations page. Nested schema for parameters:
    Referents List<GetCdToolchainToolSecretsmanagerReferent>
    (List) Information on URIs to access this resource through the UI or API. Nested schema for referent:
    ResourceGroupId string
    (String) Resource group where the tool is located.
    State string
    (String) Current configuration state of the tool.

    • Constraints: Allowable values are: configured, configuring, misconfigured, unconfigured.
    ToolId string
    ToolchainCrn string
    (String) CRN of toolchain which the tool is bound to.
    ToolchainId string
    UpdatedAt string
    (String) Latest tool update timestamp.
    Crn string
    (String) Tool CRN.
    Href string
    (String) URI representing the tool.
    Id string
    The unique identifier of the cd_toolchain_tool_secretsmanager.
    Name string
    (String) The name used to identify this tool integration. Secret references include this name to identify the secrets store where the secrets reside. All secrets store tools integrated into a toolchain should have a unique name to allow secret resolution to function properly.
    Parameters []GetCdToolchainToolSecretsmanagerParameter
    (List) Unique key-value pairs representing parameters to be used to create the tool. A list of parameters for each tool integration can be found in the Configuring tool integrations page. Nested schema for parameters:
    Referents []GetCdToolchainToolSecretsmanagerReferent
    (List) Information on URIs to access this resource through the UI or API. Nested schema for referent:
    ResourceGroupId string
    (String) Resource group where the tool is located.
    State string
    (String) Current configuration state of the tool.

    • Constraints: Allowable values are: configured, configuring, misconfigured, unconfigured.
    ToolId string
    ToolchainCrn string
    (String) CRN of toolchain which the tool is bound to.
    ToolchainId string
    UpdatedAt string
    (String) Latest tool update timestamp.
    crn String
    (String) Tool CRN.
    href String
    (String) URI representing the tool.
    id String
    The unique identifier of the cd_toolchain_tool_secretsmanager.
    name String
    (String) The name used to identify this tool integration. Secret references include this name to identify the secrets store where the secrets reside. All secrets store tools integrated into a toolchain should have a unique name to allow secret resolution to function properly.
    parameters List<GetCdToolchainToolSecretsmanagerParameter>
    (List) Unique key-value pairs representing parameters to be used to create the tool. A list of parameters for each tool integration can be found in the Configuring tool integrations page. Nested schema for parameters:
    referents List<GetCdToolchainToolSecretsmanagerReferent>
    (List) Information on URIs to access this resource through the UI or API. Nested schema for referent:
    resourceGroupId String
    (String) Resource group where the tool is located.
    state String
    (String) Current configuration state of the tool.

    • Constraints: Allowable values are: configured, configuring, misconfigured, unconfigured.
    toolId String
    toolchainCrn String
    (String) CRN of toolchain which the tool is bound to.
    toolchainId String
    updatedAt String
    (String) Latest tool update timestamp.
    crn string
    (String) Tool CRN.
    href string
    (String) URI representing the tool.
    id string
    The unique identifier of the cd_toolchain_tool_secretsmanager.
    name string
    (String) The name used to identify this tool integration. Secret references include this name to identify the secrets store where the secrets reside. All secrets store tools integrated into a toolchain should have a unique name to allow secret resolution to function properly.
    parameters GetCdToolchainToolSecretsmanagerParameter[]
    (List) Unique key-value pairs representing parameters to be used to create the tool. A list of parameters for each tool integration can be found in the Configuring tool integrations page. Nested schema for parameters:
    referents GetCdToolchainToolSecretsmanagerReferent[]
    (List) Information on URIs to access this resource through the UI or API. Nested schema for referent:
    resourceGroupId string
    (String) Resource group where the tool is located.
    state string
    (String) Current configuration state of the tool.

    • Constraints: Allowable values are: configured, configuring, misconfigured, unconfigured.
    toolId string
    toolchainCrn string
    (String) CRN of toolchain which the tool is bound to.
    toolchainId string
    updatedAt string
    (String) Latest tool update timestamp.
    crn str
    (String) Tool CRN.
    href str
    (String) URI representing the tool.
    id str
    The unique identifier of the cd_toolchain_tool_secretsmanager.
    name str
    (String) The name used to identify this tool integration. Secret references include this name to identify the secrets store where the secrets reside. All secrets store tools integrated into a toolchain should have a unique name to allow secret resolution to function properly.
    parameters Sequence[GetCdToolchainToolSecretsmanagerParameter]
    (List) Unique key-value pairs representing parameters to be used to create the tool. A list of parameters for each tool integration can be found in the Configuring tool integrations page. Nested schema for parameters:
    referents Sequence[GetCdToolchainToolSecretsmanagerReferent]
    (List) Information on URIs to access this resource through the UI or API. Nested schema for referent:
    resource_group_id str
    (String) Resource group where the tool is located.
    state str
    (String) Current configuration state of the tool.

    • Constraints: Allowable values are: configured, configuring, misconfigured, unconfigured.
    tool_id str
    toolchain_crn str
    (String) CRN of toolchain which the tool is bound to.
    toolchain_id str
    updated_at str
    (String) Latest tool update timestamp.
    crn String
    (String) Tool CRN.
    href String
    (String) URI representing the tool.
    id String
    The unique identifier of the cd_toolchain_tool_secretsmanager.
    name String
    (String) The name used to identify this tool integration. Secret references include this name to identify the secrets store where the secrets reside. All secrets store tools integrated into a toolchain should have a unique name to allow secret resolution to function properly.
    parameters List<Property Map>
    (List) Unique key-value pairs representing parameters to be used to create the tool. A list of parameters for each tool integration can be found in the Configuring tool integrations page. Nested schema for parameters:
    referents List<Property Map>
    (List) Information on URIs to access this resource through the UI or API. Nested schema for referent:
    resourceGroupId String
    (String) Resource group where the tool is located.
    state String
    (String) Current configuration state of the tool.

    • Constraints: Allowable values are: configured, configuring, misconfigured, unconfigured.
    toolId String
    toolchainCrn String
    (String) CRN of toolchain which the tool is bound to.
    toolchainId String
    updatedAt String
    (String) Latest tool update timestamp.

    Supporting Types

    GetCdToolchainToolSecretsmanagerParameter

    InstanceCrn string
    (String) The Secrets Manager service instance CRN (Cloud Resource Name), only relevant when using instance-crn as the instance_id_type.

    • Constraints: The value must match regular expression /^crn:v1:(?:bluemix|staging):public:secrets-manager:[a-zA-Z0-9-]*\\b:a\/[0-9a-fA-F]*\\b:[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}\\b::$/.
    InstanceIdType string
    (String) The type of service instance identifier. When absent defaults to instance-name.

    • Constraints: Allowable values are: instance-name, instance-crn.
    InstanceName string
    (String) The name of the Secrets Manager service instance, only relevant when using instance-name as the instance_id_type.

    • Constraints: The value must match regular expression /\\S/.
    Location string
    (String) The IBM Cloud location of the Secrets Manager service instance, only relevant when using instance-name as the instance_id_type.
    Name string
    (String) The name used to identify this tool integration. Secret references include this name to identify the secrets store where the secrets reside. All secrets store tools integrated into a toolchain should have a unique name to allow secret resolution to function properly.
    ResourceGroupName string
    (String) The name of the resource group where the Secrets Manager service instance is located, only relevant when using instance-name as the instance_id_type.
    InstanceCrn string
    (String) The Secrets Manager service instance CRN (Cloud Resource Name), only relevant when using instance-crn as the instance_id_type.

    • Constraints: The value must match regular expression /^crn:v1:(?:bluemix|staging):public:secrets-manager:[a-zA-Z0-9-]*\\b:a\/[0-9a-fA-F]*\\b:[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}\\b::$/.
    InstanceIdType string
    (String) The type of service instance identifier. When absent defaults to instance-name.

    • Constraints: Allowable values are: instance-name, instance-crn.
    InstanceName string
    (String) The name of the Secrets Manager service instance, only relevant when using instance-name as the instance_id_type.

    • Constraints: The value must match regular expression /\\S/.
    Location string
    (String) The IBM Cloud location of the Secrets Manager service instance, only relevant when using instance-name as the instance_id_type.
    Name string
    (String) The name used to identify this tool integration. Secret references include this name to identify the secrets store where the secrets reside. All secrets store tools integrated into a toolchain should have a unique name to allow secret resolution to function properly.
    ResourceGroupName string
    (String) The name of the resource group where the Secrets Manager service instance is located, only relevant when using instance-name as the instance_id_type.
    instanceCrn String
    (String) The Secrets Manager service instance CRN (Cloud Resource Name), only relevant when using instance-crn as the instance_id_type.

    • Constraints: The value must match regular expression /^crn:v1:(?:bluemix|staging):public:secrets-manager:[a-zA-Z0-9-]*\\b:a\/[0-9a-fA-F]*\\b:[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}\\b::$/.
    instanceIdType String
    (String) The type of service instance identifier. When absent defaults to instance-name.

    • Constraints: Allowable values are: instance-name, instance-crn.
    instanceName String
    (String) The name of the Secrets Manager service instance, only relevant when using instance-name as the instance_id_type.

    • Constraints: The value must match regular expression /\\S/.
    location String
    (String) The IBM Cloud location of the Secrets Manager service instance, only relevant when using instance-name as the instance_id_type.
    name String
    (String) The name used to identify this tool integration. Secret references include this name to identify the secrets store where the secrets reside. All secrets store tools integrated into a toolchain should have a unique name to allow secret resolution to function properly.
    resourceGroupName String
    (String) The name of the resource group where the Secrets Manager service instance is located, only relevant when using instance-name as the instance_id_type.
    instanceCrn string
    (String) The Secrets Manager service instance CRN (Cloud Resource Name), only relevant when using instance-crn as the instance_id_type.

    • Constraints: The value must match regular expression /^crn:v1:(?:bluemix|staging):public:secrets-manager:[a-zA-Z0-9-]*\\b:a\/[0-9a-fA-F]*\\b:[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}\\b::$/.
    instanceIdType string
    (String) The type of service instance identifier. When absent defaults to instance-name.

    • Constraints: Allowable values are: instance-name, instance-crn.
    instanceName string
    (String) The name of the Secrets Manager service instance, only relevant when using instance-name as the instance_id_type.

    • Constraints: The value must match regular expression /\\S/.
    location string
    (String) The IBM Cloud location of the Secrets Manager service instance, only relevant when using instance-name as the instance_id_type.
    name string
    (String) The name used to identify this tool integration. Secret references include this name to identify the secrets store where the secrets reside. All secrets store tools integrated into a toolchain should have a unique name to allow secret resolution to function properly.
    resourceGroupName string
    (String) The name of the resource group where the Secrets Manager service instance is located, only relevant when using instance-name as the instance_id_type.
    instance_crn str
    (String) The Secrets Manager service instance CRN (Cloud Resource Name), only relevant when using instance-crn as the instance_id_type.

    • Constraints: The value must match regular expression /^crn:v1:(?:bluemix|staging):public:secrets-manager:[a-zA-Z0-9-]*\\b:a\/[0-9a-fA-F]*\\b:[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}\\b::$/.
    instance_id_type str
    (String) The type of service instance identifier. When absent defaults to instance-name.

    • Constraints: Allowable values are: instance-name, instance-crn.
    instance_name str
    (String) The name of the Secrets Manager service instance, only relevant when using instance-name as the instance_id_type.

    • Constraints: The value must match regular expression /\\S/.
    location str
    (String) The IBM Cloud location of the Secrets Manager service instance, only relevant when using instance-name as the instance_id_type.
    name str
    (String) The name used to identify this tool integration. Secret references include this name to identify the secrets store where the secrets reside. All secrets store tools integrated into a toolchain should have a unique name to allow secret resolution to function properly.
    resource_group_name str
    (String) The name of the resource group where the Secrets Manager service instance is located, only relevant when using instance-name as the instance_id_type.
    instanceCrn String
    (String) The Secrets Manager service instance CRN (Cloud Resource Name), only relevant when using instance-crn as the instance_id_type.

    • Constraints: The value must match regular expression /^crn:v1:(?:bluemix|staging):public:secrets-manager:[a-zA-Z0-9-]*\\b:a\/[0-9a-fA-F]*\\b:[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}\\b::$/.
    instanceIdType String
    (String) The type of service instance identifier. When absent defaults to instance-name.

    • Constraints: Allowable values are: instance-name, instance-crn.
    instanceName String
    (String) The name of the Secrets Manager service instance, only relevant when using instance-name as the instance_id_type.

    • Constraints: The value must match regular expression /\\S/.
    location String
    (String) The IBM Cloud location of the Secrets Manager service instance, only relevant when using instance-name as the instance_id_type.
    name String
    (String) The name used to identify this tool integration. Secret references include this name to identify the secrets store where the secrets reside. All secrets store tools integrated into a toolchain should have a unique name to allow secret resolution to function properly.
    resourceGroupName String
    (String) The name of the resource group where the Secrets Manager service instance is located, only relevant when using instance-name as the instance_id_type.

    GetCdToolchainToolSecretsmanagerReferent

    ApiHref string
    (String) URI representing this resource through an API.
    UiHref string
    (String) URI representing this resource through the UI.
    ApiHref string
    (String) URI representing this resource through an API.
    UiHref string
    (String) URI representing this resource through the UI.
    apiHref String
    (String) URI representing this resource through an API.
    uiHref String
    (String) URI representing this resource through the UI.
    apiHref string
    (String) URI representing this resource through an API.
    uiHref string
    (String) URI representing this resource through the UI.
    api_href str
    (String) URI representing this resource through an API.
    ui_href str
    (String) URI representing this resource through the UI.
    apiHref String
    (String) URI representing this resource through an API.
    uiHref String
    (String) URI representing this resource through the UI.

    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.77.1 published on Monday, Apr 14, 2025 by ibm-cloud