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

ibm.CdToolchainToolAppconfig

Explore with Pulumi AI

Create, update, and delete cd_toolchain_tool_appconfigs with this resource.

See the tool integration page for more information.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";

const cdToolchainToolAppconfigInstance = new ibm.CdToolchainToolAppconfig("cdToolchainToolAppconfigInstance", {
    parameters: {
        name: "appconfig_tool_01",
        location: "us-south",
        resourceGroupName: "Default",
        instanceId: "2a9e3c79-3595-45df-824d-9250aeb598c8",
        environmentId: "environment_01",
        collectionId: "collection_01",
    },
    toolchainId: ibm_cd_toolchain.cd_toolchain.id,
});
Copy
import pulumi
import pulumi_ibm as ibm

cd_toolchain_tool_appconfig_instance = ibm.CdToolchainToolAppconfig("cdToolchainToolAppconfigInstance",
    parameters={
        "name": "appconfig_tool_01",
        "location": "us-south",
        "resource_group_name": "Default",
        "instance_id": "2a9e3c79-3595-45df-824d-9250aeb598c8",
        "environment_id": "environment_01",
        "collection_id": "collection_01",
    },
    toolchain_id=ibm_cd_toolchain["cd_toolchain"]["id"])
Copy
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.NewCdToolchainToolAppconfig(ctx, "cdToolchainToolAppconfigInstance", &ibm.CdToolchainToolAppconfigArgs{
			Parameters: &ibm.CdToolchainToolAppconfigParametersArgs{
				Name:              pulumi.String("appconfig_tool_01"),
				Location:          pulumi.String("us-south"),
				ResourceGroupName: pulumi.String("Default"),
				InstanceId:        pulumi.String("2a9e3c79-3595-45df-824d-9250aeb598c8"),
				EnvironmentId:     pulumi.String("environment_01"),
				CollectionId:      pulumi.String("collection_01"),
			},
			ToolchainId: pulumi.Any(ibm_cd_toolchain.Cd_toolchain.Id),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ibm = Pulumi.Ibm;

return await Deployment.RunAsync(() => 
{
    var cdToolchainToolAppconfigInstance = new Ibm.CdToolchainToolAppconfig("cdToolchainToolAppconfigInstance", new()
    {
        Parameters = new Ibm.Inputs.CdToolchainToolAppconfigParametersArgs
        {
            Name = "appconfig_tool_01",
            Location = "us-south",
            ResourceGroupName = "Default",
            InstanceId = "2a9e3c79-3595-45df-824d-9250aeb598c8",
            EnvironmentId = "environment_01",
            CollectionId = "collection_01",
        },
        ToolchainId = ibm_cd_toolchain.Cd_toolchain.Id,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.CdToolchainToolAppconfig;
import com.pulumi.ibm.CdToolchainToolAppconfigArgs;
import com.pulumi.ibm.inputs.CdToolchainToolAppconfigParametersArgs;
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 cdToolchainToolAppconfigInstance = new CdToolchainToolAppconfig("cdToolchainToolAppconfigInstance", CdToolchainToolAppconfigArgs.builder()
            .parameters(CdToolchainToolAppconfigParametersArgs.builder()
                .name("appconfig_tool_01")
                .location("us-south")
                .resourceGroupName("Default")
                .instanceId("2a9e3c79-3595-45df-824d-9250aeb598c8")
                .environmentId("environment_01")
                .collectionId("collection_01")
                .build())
            .toolchainId(ibm_cd_toolchain.cd_toolchain().id())
            .build());

    }
}
Copy
resources:
  cdToolchainToolAppconfigInstance:
    type: ibm:CdToolchainToolAppconfig
    properties:
      parameters:
        name: appconfig_tool_01
        location: us-south
        resourceGroupName: Default
        instanceId: 2a9e3c79-3595-45df-824d-9250aeb598c8
        environmentId: environment_01
        collectionId: collection_01
      toolchainId: ${ibm_cd_toolchain.cd_toolchain.id}
Copy

Create CdToolchainToolAppconfig Resource

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

Constructor syntax

new CdToolchainToolAppconfig(name: string, args: CdToolchainToolAppconfigArgs, opts?: CustomResourceOptions);
@overload
def CdToolchainToolAppconfig(resource_name: str,
                             args: CdToolchainToolAppconfigArgs,
                             opts: Optional[ResourceOptions] = None)

@overload
def CdToolchainToolAppconfig(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             parameters: Optional[CdToolchainToolAppconfigParametersArgs] = None,
                             toolchain_id: Optional[str] = None,
                             cd_toolchain_tool_appconfig_id: Optional[str] = None,
                             name: Optional[str] = None)
func NewCdToolchainToolAppconfig(ctx *Context, name string, args CdToolchainToolAppconfigArgs, opts ...ResourceOption) (*CdToolchainToolAppconfig, error)
public CdToolchainToolAppconfig(string name, CdToolchainToolAppconfigArgs args, CustomResourceOptions? opts = null)
public CdToolchainToolAppconfig(String name, CdToolchainToolAppconfigArgs args)
public CdToolchainToolAppconfig(String name, CdToolchainToolAppconfigArgs args, CustomResourceOptions options)
type: ibm:CdToolchainToolAppconfig
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. CdToolchainToolAppconfigArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. CdToolchainToolAppconfigArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. CdToolchainToolAppconfigArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. CdToolchainToolAppconfigArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. CdToolchainToolAppconfigArgs
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 cdToolchainToolAppconfigResource = new Ibm.CdToolchainToolAppconfig("cdToolchainToolAppconfigResource", new()
{
    Parameters = new Ibm.Inputs.CdToolchainToolAppconfigParametersArgs
    {
        CollectionId = "string",
        EnvironmentId = "string",
        InstanceId = "string",
        Location = "string",
        Name = "string",
        ResourceGroupName = "string",
    },
    ToolchainId = "string",
    CdToolchainToolAppconfigId = "string",
    Name = "string",
});
Copy
example, err := ibm.NewCdToolchainToolAppconfig(ctx, "cdToolchainToolAppconfigResource", &ibm.CdToolchainToolAppconfigArgs{
Parameters: &.CdToolchainToolAppconfigParametersArgs{
CollectionId: pulumi.String("string"),
EnvironmentId: pulumi.String("string"),
InstanceId: pulumi.String("string"),
Location: pulumi.String("string"),
Name: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
},
ToolchainId: pulumi.String("string"),
CdToolchainToolAppconfigId: pulumi.String("string"),
Name: pulumi.String("string"),
})
Copy
var cdToolchainToolAppconfigResource = new CdToolchainToolAppconfig("cdToolchainToolAppconfigResource", CdToolchainToolAppconfigArgs.builder()
    .parameters(CdToolchainToolAppconfigParametersArgs.builder()
        .collectionId("string")
        .environmentId("string")
        .instanceId("string")
        .location("string")
        .name("string")
        .resourceGroupName("string")
        .build())
    .toolchainId("string")
    .cdToolchainToolAppconfigId("string")
    .name("string")
    .build());
Copy
cd_toolchain_tool_appconfig_resource = ibm.CdToolchainToolAppconfig("cdToolchainToolAppconfigResource",
    parameters={
        "collection_id": "string",
        "environment_id": "string",
        "instance_id": "string",
        "location": "string",
        "name": "string",
        "resource_group_name": "string",
    },
    toolchain_id="string",
    cd_toolchain_tool_appconfig_id="string",
    name="string")
Copy
const cdToolchainToolAppconfigResource = new ibm.CdToolchainToolAppconfig("cdToolchainToolAppconfigResource", {
    parameters: {
        collectionId: "string",
        environmentId: "string",
        instanceId: "string",
        location: "string",
        name: "string",
        resourceGroupName: "string",
    },
    toolchainId: "string",
    cdToolchainToolAppconfigId: "string",
    name: "string",
});
Copy
type: ibm:CdToolchainToolAppconfig
properties:
    cdToolchainToolAppconfigId: string
    name: string
    parameters:
        collectionId: string
        environmentId: string
        instanceId: string
        location: string
        name: string
        resourceGroupName: string
    toolchainId: string
Copy

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

Parameters This property is required. CdToolchainToolAppconfigParameters
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:
ToolchainId This property is required. string
ID of the toolchain to bind the tool to.

  • 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}$/.
CdToolchainToolAppconfigId string
The unique identifier of the cd_toolchain_tool_appconfig.
Name string
Name of the tool.

  • Constraints: The maximum length is 128 characters. The minimum length is 0 characters. The value must match regular expression /^([^\\x00-\\x7F]|[a-zA-Z0-9-._ ])+$/.
Parameters This property is required. CdToolchainToolAppconfigParametersArgs
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:
ToolchainId This property is required. string
ID of the toolchain to bind the tool to.

  • 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}$/.
CdToolchainToolAppconfigId string
The unique identifier of the cd_toolchain_tool_appconfig.
Name string
Name of the tool.

  • Constraints: The maximum length is 128 characters. The minimum length is 0 characters. The value must match regular expression /^([^\\x00-\\x7F]|[a-zA-Z0-9-._ ])+$/.
parameters This property is required. CdToolchainToolAppconfigParameters
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:
toolchainId This property is required. String
ID of the toolchain to bind the tool to.

  • 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}$/.
cdToolchainToolAppconfigId String
The unique identifier of the cd_toolchain_tool_appconfig.
name String
Name of the tool.

  • Constraints: The maximum length is 128 characters. The minimum length is 0 characters. The value must match regular expression /^([^\\x00-\\x7F]|[a-zA-Z0-9-._ ])+$/.
parameters This property is required. CdToolchainToolAppconfigParameters
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:
toolchainId This property is required. string
ID of the toolchain to bind the tool to.

  • 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}$/.
cdToolchainToolAppconfigId string
The unique identifier of the cd_toolchain_tool_appconfig.
name string
Name of the tool.

  • Constraints: The maximum length is 128 characters. The minimum length is 0 characters. The value must match regular expression /^([^\\x00-\\x7F]|[a-zA-Z0-9-._ ])+$/.
parameters This property is required. CdToolchainToolAppconfigParametersArgs
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:
toolchain_id This property is required. str
ID of the toolchain to bind the tool to.

  • 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}$/.
cd_toolchain_tool_appconfig_id str
The unique identifier of the cd_toolchain_tool_appconfig.
name str
Name of the tool.

  • Constraints: The maximum length is 128 characters. The minimum length is 0 characters. The value must match regular expression /^([^\\x00-\\x7F]|[a-zA-Z0-9-._ ])+$/.
parameters This property is required. Property Map
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:
toolchainId This property is required. String
ID of the toolchain to bind the tool to.

  • 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}$/.
cdToolchainToolAppconfigId String
The unique identifier of the cd_toolchain_tool_appconfig.
name String
Name of the tool.

  • Constraints: The maximum length is 128 characters. The minimum length is 0 characters. The value must match regular expression /^([^\\x00-\\x7F]|[a-zA-Z0-9-._ ])+$/.

Outputs

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

Crn string
(String) Tool CRN.
Href string
(String) URI representing the tool.
Id string
The provider-assigned unique ID for this managed resource.
Referents List<CdToolchainToolAppconfigReferent>
(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
(String) Tool ID.

  • 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}$/.
ToolchainCrn string
(String) CRN of toolchain which the tool is bound to.
UpdatedAt string
(String) Latest tool update timestamp.
Crn string
(String) Tool CRN.
Href string
(String) URI representing the tool.
Id string
The provider-assigned unique ID for this managed resource.
Referents []CdToolchainToolAppconfigReferent
(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
(String) Tool ID.

  • 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}$/.
ToolchainCrn string
(String) CRN of toolchain which the tool is bound to.
UpdatedAt string
(String) Latest tool update timestamp.
crn String
(String) Tool CRN.
href String
(String) URI representing the tool.
id String
The provider-assigned unique ID for this managed resource.
referents List<CdToolchainToolAppconfigReferent>
(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
(String) Tool ID.

  • 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}$/.
toolchainCrn String
(String) CRN of toolchain which the tool is bound to.
updatedAt String
(String) Latest tool update timestamp.
crn string
(String) Tool CRN.
href string
(String) URI representing the tool.
id string
The provider-assigned unique ID for this managed resource.
referents CdToolchainToolAppconfigReferent[]
(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
(String) Tool ID.

  • 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}$/.
toolchainCrn string
(String) CRN of toolchain which the tool is bound to.
updatedAt string
(String) Latest tool update timestamp.
crn str
(String) Tool CRN.
href str
(String) URI representing the tool.
id str
The provider-assigned unique ID for this managed resource.
referents Sequence[CdToolchainToolAppconfigReferent]
(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
(String) Tool ID.

  • 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_crn str
(String) CRN of toolchain which the tool is bound to.
updated_at str
(String) Latest tool update timestamp.
crn String
(String) Tool CRN.
href String
(String) URI representing the tool.
id String
The provider-assigned unique ID for this managed resource.
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
(String) Tool ID.

  • 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}$/.
toolchainCrn String
(String) CRN of toolchain which the tool is bound to.
updatedAt String
(String) Latest tool update timestamp.

Look up Existing CdToolchainToolAppconfig Resource

Get an existing CdToolchainToolAppconfig 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?: CdToolchainToolAppconfigState, opts?: CustomResourceOptions): CdToolchainToolAppconfig
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        cd_toolchain_tool_appconfig_id: Optional[str] = None,
        crn: Optional[str] = None,
        href: Optional[str] = None,
        name: Optional[str] = None,
        parameters: Optional[CdToolchainToolAppconfigParametersArgs] = None,
        referents: Optional[Sequence[CdToolchainToolAppconfigReferentArgs]] = None,
        resource_group_id: Optional[str] = None,
        state: Optional[str] = None,
        tool_id: Optional[str] = None,
        toolchain_crn: Optional[str] = None,
        toolchain_id: Optional[str] = None,
        updated_at: Optional[str] = None) -> CdToolchainToolAppconfig
func GetCdToolchainToolAppconfig(ctx *Context, name string, id IDInput, state *CdToolchainToolAppconfigState, opts ...ResourceOption) (*CdToolchainToolAppconfig, error)
public static CdToolchainToolAppconfig Get(string name, Input<string> id, CdToolchainToolAppconfigState? state, CustomResourceOptions? opts = null)
public static CdToolchainToolAppconfig get(String name, Output<String> id, CdToolchainToolAppconfigState state, CustomResourceOptions options)
resources:  _:    type: ibm:CdToolchainToolAppconfig    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
CdToolchainToolAppconfigId string
The unique identifier of the cd_toolchain_tool_appconfig.
Crn string
(String) Tool CRN.
Href string
(String) URI representing the tool.
Name string
Name of the tool.

  • Constraints: The maximum length is 128 characters. The minimum length is 0 characters. The value must match regular expression /^([^\\x00-\\x7F]|[a-zA-Z0-9-._ ])+$/.
Parameters CdToolchainToolAppconfigParameters
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<CdToolchainToolAppconfigReferent>
(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
(String) Tool ID.

  • 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}$/.
ToolchainCrn string
(String) CRN of toolchain which the tool is bound to.
ToolchainId string
ID of the toolchain to bind the tool to.

  • 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}$/.
UpdatedAt string
(String) Latest tool update timestamp.
CdToolchainToolAppconfigId string
The unique identifier of the cd_toolchain_tool_appconfig.
Crn string
(String) Tool CRN.
Href string
(String) URI representing the tool.
Name string
Name of the tool.

  • Constraints: The maximum length is 128 characters. The minimum length is 0 characters. The value must match regular expression /^([^\\x00-\\x7F]|[a-zA-Z0-9-._ ])+$/.
Parameters CdToolchainToolAppconfigParametersArgs
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 []CdToolchainToolAppconfigReferentArgs
(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
(String) Tool ID.

  • 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}$/.
ToolchainCrn string
(String) CRN of toolchain which the tool is bound to.
ToolchainId string
ID of the toolchain to bind the tool to.

  • 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}$/.
UpdatedAt string
(String) Latest tool update timestamp.
cdToolchainToolAppconfigId String
The unique identifier of the cd_toolchain_tool_appconfig.
crn String
(String) Tool CRN.
href String
(String) URI representing the tool.
name String
Name of the tool.

  • Constraints: The maximum length is 128 characters. The minimum length is 0 characters. The value must match regular expression /^([^\\x00-\\x7F]|[a-zA-Z0-9-._ ])+$/.
parameters CdToolchainToolAppconfigParameters
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<CdToolchainToolAppconfigReferent>
(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
(String) Tool ID.

  • 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}$/.
toolchainCrn String
(String) CRN of toolchain which the tool is bound to.
toolchainId String
ID of the toolchain to bind the tool to.

  • 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}$/.
updatedAt String
(String) Latest tool update timestamp.
cdToolchainToolAppconfigId string
The unique identifier of the cd_toolchain_tool_appconfig.
crn string
(String) Tool CRN.
href string
(String) URI representing the tool.
name string
Name of the tool.

  • Constraints: The maximum length is 128 characters. The minimum length is 0 characters. The value must match regular expression /^([^\\x00-\\x7F]|[a-zA-Z0-9-._ ])+$/.
parameters CdToolchainToolAppconfigParameters
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 CdToolchainToolAppconfigReferent[]
(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
(String) Tool ID.

  • 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}$/.
toolchainCrn string
(String) CRN of toolchain which the tool is bound to.
toolchainId string
ID of the toolchain to bind the tool to.

  • 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}$/.
updatedAt string
(String) Latest tool update timestamp.
cd_toolchain_tool_appconfig_id str
The unique identifier of the cd_toolchain_tool_appconfig.
crn str
(String) Tool CRN.
href str
(String) URI representing the tool.
name str
Name of the tool.

  • Constraints: The maximum length is 128 characters. The minimum length is 0 characters. The value must match regular expression /^([^\\x00-\\x7F]|[a-zA-Z0-9-._ ])+$/.
parameters CdToolchainToolAppconfigParametersArgs
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[CdToolchainToolAppconfigReferentArgs]
(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
(String) Tool ID.

  • 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_crn str
(String) CRN of toolchain which the tool is bound to.
toolchain_id str
ID of the toolchain to bind the tool to.

  • 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}$/.
updated_at str
(String) Latest tool update timestamp.
cdToolchainToolAppconfigId String
The unique identifier of the cd_toolchain_tool_appconfig.
crn String
(String) Tool CRN.
href String
(String) URI representing the tool.
name String
Name of the tool.

  • Constraints: The maximum length is 128 characters. The minimum length is 0 characters. The value must match regular expression /^([^\\x00-\\x7F]|[a-zA-Z0-9-._ ])+$/.
parameters Property Map
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
(String) Tool ID.

  • 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}$/.
toolchainCrn String
(String) CRN of toolchain which the tool is bound to.
toolchainId String
ID of the toolchain to bind the tool to.

  • 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}$/.
updatedAt String
(String) Latest tool update timestamp.

Supporting Types

CdToolchainToolAppconfigParameters
, CdToolchainToolAppconfigParametersArgs

CollectionId This property is required. string
The ID of the App Configuration collection.

  • Constraints: The value must match regular expression /\\S/.
EnvironmentId This property is required. string
The ID of the App Configuration environment.

  • Constraints: The value must match regular expression /\\S/.
InstanceId This property is required. string
The guid of the App Configuration service instance.

  • Constraints: The value must match regular expression /\\S/.
Location This property is required. string
The IBM Cloud location where the App Configuration service instance is located.
Name This property is required. string
The name used to identify this tool integration. App Configuration references include this name to identify the App Configuration instance where the configuration values reside. All App Configuration tools integrated into a toolchain should have a unique name to allow resolution to function properly.
ResourceGroupName This property is required. string
The name of the resource group where the App Configuration service instance is located.
CollectionId This property is required. string
The ID of the App Configuration collection.

  • Constraints: The value must match regular expression /\\S/.
EnvironmentId This property is required. string
The ID of the App Configuration environment.

  • Constraints: The value must match regular expression /\\S/.
InstanceId This property is required. string
The guid of the App Configuration service instance.

  • Constraints: The value must match regular expression /\\S/.
Location This property is required. string
The IBM Cloud location where the App Configuration service instance is located.
Name This property is required. string
The name used to identify this tool integration. App Configuration references include this name to identify the App Configuration instance where the configuration values reside. All App Configuration tools integrated into a toolchain should have a unique name to allow resolution to function properly.
ResourceGroupName This property is required. string
The name of the resource group where the App Configuration service instance is located.
collectionId This property is required. String
The ID of the App Configuration collection.

  • Constraints: The value must match regular expression /\\S/.
environmentId This property is required. String
The ID of the App Configuration environment.

  • Constraints: The value must match regular expression /\\S/.
instanceId This property is required. String
The guid of the App Configuration service instance.

  • Constraints: The value must match regular expression /\\S/.
location This property is required. String
The IBM Cloud location where the App Configuration service instance is located.
name This property is required. String
The name used to identify this tool integration. App Configuration references include this name to identify the App Configuration instance where the configuration values reside. All App Configuration tools integrated into a toolchain should have a unique name to allow resolution to function properly.
resourceGroupName This property is required. String
The name of the resource group where the App Configuration service instance is located.
collectionId This property is required. string
The ID of the App Configuration collection.

  • Constraints: The value must match regular expression /\\S/.
environmentId This property is required. string
The ID of the App Configuration environment.

  • Constraints: The value must match regular expression /\\S/.
instanceId This property is required. string
The guid of the App Configuration service instance.

  • Constraints: The value must match regular expression /\\S/.
location This property is required. string
The IBM Cloud location where the App Configuration service instance is located.
name This property is required. string
The name used to identify this tool integration. App Configuration references include this name to identify the App Configuration instance where the configuration values reside. All App Configuration tools integrated into a toolchain should have a unique name to allow resolution to function properly.
resourceGroupName This property is required. string
The name of the resource group where the App Configuration service instance is located.
collection_id This property is required. str
The ID of the App Configuration collection.

  • Constraints: The value must match regular expression /\\S/.
environment_id This property is required. str
The ID of the App Configuration environment.

  • Constraints: The value must match regular expression /\\S/.
instance_id This property is required. str
The guid of the App Configuration service instance.

  • Constraints: The value must match regular expression /\\S/.
location This property is required. str
The IBM Cloud location where the App Configuration service instance is located.
name This property is required. str
The name used to identify this tool integration. App Configuration references include this name to identify the App Configuration instance where the configuration values reside. All App Configuration tools integrated into a toolchain should have a unique name to allow resolution to function properly.
resource_group_name This property is required. str
The name of the resource group where the App Configuration service instance is located.
collectionId This property is required. String
The ID of the App Configuration collection.

  • Constraints: The value must match regular expression /\\S/.
environmentId This property is required. String
The ID of the App Configuration environment.

  • Constraints: The value must match regular expression /\\S/.
instanceId This property is required. String
The guid of the App Configuration service instance.

  • Constraints: The value must match regular expression /\\S/.
location This property is required. String
The IBM Cloud location where the App Configuration service instance is located.
name This property is required. String
The name used to identify this tool integration. App Configuration references include this name to identify the App Configuration instance where the configuration values reside. All App Configuration tools integrated into a toolchain should have a unique name to allow resolution to function properly.
resourceGroupName This property is required. String
The name of the resource group where the App Configuration service instance is located.

CdToolchainToolAppconfigReferent
, CdToolchainToolAppconfigReferentArgs

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

Import

You can import the ibm_cd_toolchain_tool_appconfig resource by using id.

The id property can be formed from toolchain_id, and tool_id in the following format:

<toolchain_id>/<tool_id>

  • toolchain_id: A string. ID of the toolchain to bind the tool to.

  • tool_id: A string. ID of the tool bound to the toolchain.

Syntax

$ pulumi import ibm:index/cdToolchainToolAppconfig:CdToolchainToolAppconfig cd_toolchain_tool_appconfig <toolchain_id>/<tool_id>
Copy

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.