1. Packages
  2. Packages
  3. Harness Provider
  4. API Docs
  5. platform
  6. BitbucketConnector
Viewing docs for Harness v0.12.0
published on Tuesday, Apr 21, 2026 by Pulumi
harness logo
Viewing docs for Harness v0.12.0
published on Tuesday, Apr 21, 2026 by Pulumi

    Resource for creating a Bitbucket connector.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as harness from "@pulumi/harness";
    
    // Credentials http (with username + personal access token - UsernameToken)
    const usernameToken = new harness.platform.BitbucketConnector("username_token", {
        identifier: "identifier",
        name: "name",
        description: "test",
        tags: ["foo:bar"],
        url: "https://bitbucket.com/account",
        connectionType: "Account",
        validationRepo: "some_repo",
        delegateSelectors: ["harness-delegate"],
        credentials: {
            http: {
                username: "username",
                passwordRef: "account.secret_id",
            },
        },
        apiAuthentication: {
            authType: "UsernameToken",
            username: "username",
            tokenRef: "account.secret_id",
        },
    });
    // Credentials http with Bitbucket Cloud Workspace API Token (email + API token)
    // Use this when migrating off Bitbucket app passwords (EOL 2026-06-09).
    const emailApiToken = new harness.platform.BitbucketConnector("email_api_token", {
        identifier: "identifier_email_api_token",
        name: "name_email_api_token",
        description: "Bitbucket Cloud with Workspace API Token",
        tags: ["foo:bar"],
        url: "https://bitbucket.org/my-workspace",
        connectionType: "Account",
        validationRepo: "some_repo",
        delegateSelectors: ["harness-delegate"],
        credentials: {
            http: {
                username: "username",
                passwordRef: "account.secret_id",
            },
        },
        apiAuthentication: {
            authType: "EmailAndApiToken",
            email: "user@example.com",
            tokenRef: "account.api_token_secret",
        },
    });
    // Credentials http with Bitbucket repo/project Access Token
    const accessToken = new harness.platform.BitbucketConnector("access_token", {
        identifier: "identifier_access_token",
        name: "name_access_token",
        description: "Bitbucket with Access Token",
        tags: ["foo:bar"],
        url: "https://bitbucket.org/my-workspace",
        connectionType: "Account",
        validationRepo: "some_repo",
        delegateSelectors: ["harness-delegate"],
        credentials: {
            http: {
                username: "username",
                passwordRef: "account.secret_id",
            },
        },
        apiAuthentication: {
            authType: "AccessToken",
            tokenRef: "account.access_token_secret",
        },
    });
    // Credentials ssh
    const ssh = new harness.platform.BitbucketConnector("ssh", {
        identifier: "identifier_ssh",
        name: "name_ssh",
        description: "test",
        tags: ["foo:bar"],
        url: "https://bitbucket.com/account",
        connectionType: "Account",
        validationRepo: "some_repo",
        delegateSelectors: ["harness-delegate"],
        credentials: {
            ssh: {
                sshKeyRef: "account.secret_id",
            },
        },
    });
    
    import pulumi
    import pulumi_harness as harness
    
    # Credentials http (with username + personal access token - UsernameToken)
    username_token = harness.platform.BitbucketConnector("username_token",
        identifier="identifier",
        name="name",
        description="test",
        tags=["foo:bar"],
        url="https://bitbucket.com/account",
        connection_type="Account",
        validation_repo="some_repo",
        delegate_selectors=["harness-delegate"],
        credentials={
            "http": {
                "username": "username",
                "password_ref": "account.secret_id",
            },
        },
        api_authentication={
            "auth_type": "UsernameToken",
            "username": "username",
            "token_ref": "account.secret_id",
        })
    # Credentials http with Bitbucket Cloud Workspace API Token (email + API token)
    # Use this when migrating off Bitbucket app passwords (EOL 2026-06-09).
    email_api_token = harness.platform.BitbucketConnector("email_api_token",
        identifier="identifier_email_api_token",
        name="name_email_api_token",
        description="Bitbucket Cloud with Workspace API Token",
        tags=["foo:bar"],
        url="https://bitbucket.org/my-workspace",
        connection_type="Account",
        validation_repo="some_repo",
        delegate_selectors=["harness-delegate"],
        credentials={
            "http": {
                "username": "username",
                "password_ref": "account.secret_id",
            },
        },
        api_authentication={
            "auth_type": "EmailAndApiToken",
            "email": "user@example.com",
            "token_ref": "account.api_token_secret",
        })
    # Credentials http with Bitbucket repo/project Access Token
    access_token = harness.platform.BitbucketConnector("access_token",
        identifier="identifier_access_token",
        name="name_access_token",
        description="Bitbucket with Access Token",
        tags=["foo:bar"],
        url="https://bitbucket.org/my-workspace",
        connection_type="Account",
        validation_repo="some_repo",
        delegate_selectors=["harness-delegate"],
        credentials={
            "http": {
                "username": "username",
                "password_ref": "account.secret_id",
            },
        },
        api_authentication={
            "auth_type": "AccessToken",
            "token_ref": "account.access_token_secret",
        })
    # Credentials ssh
    ssh = harness.platform.BitbucketConnector("ssh",
        identifier="identifier_ssh",
        name="name_ssh",
        description="test",
        tags=["foo:bar"],
        url="https://bitbucket.com/account",
        connection_type="Account",
        validation_repo="some_repo",
        delegate_selectors=["harness-delegate"],
        credentials={
            "ssh": {
                "ssh_key_ref": "account.secret_id",
            },
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-harness/sdk/go/harness/platform"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Credentials http (with username + personal access token - UsernameToken)
    		_, err := platform.NewBitbucketConnector(ctx, "username_token", &platform.BitbucketConnectorArgs{
    			Identifier:  pulumi.String("identifier"),
    			Name:        pulumi.String("name"),
    			Description: pulumi.String("test"),
    			Tags: pulumi.StringArray{
    				pulumi.String("foo:bar"),
    			},
    			Url:            pulumi.String("https://bitbucket.com/account"),
    			ConnectionType: pulumi.String("Account"),
    			ValidationRepo: pulumi.String("some_repo"),
    			DelegateSelectors: pulumi.StringArray{
    				pulumi.String("harness-delegate"),
    			},
    			Credentials: &platform.BitbucketConnectorCredentialsArgs{
    				Http: &platform.BitbucketConnectorCredentialsHttpArgs{
    					Username:    pulumi.String("username"),
    					PasswordRef: pulumi.String("account.secret_id"),
    				},
    			},
    			ApiAuthentication: &platform.BitbucketConnectorApiAuthenticationArgs{
    				AuthType: pulumi.String("UsernameToken"),
    				Username: pulumi.String("username"),
    				TokenRef: pulumi.String("account.secret_id"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// Credentials http with Bitbucket Cloud Workspace API Token (email + API token)
    		// Use this when migrating off Bitbucket app passwords (EOL 2026-06-09).
    		_, err = platform.NewBitbucketConnector(ctx, "email_api_token", &platform.BitbucketConnectorArgs{
    			Identifier:  pulumi.String("identifier_email_api_token"),
    			Name:        pulumi.String("name_email_api_token"),
    			Description: pulumi.String("Bitbucket Cloud with Workspace API Token"),
    			Tags: pulumi.StringArray{
    				pulumi.String("foo:bar"),
    			},
    			Url:            pulumi.String("https://bitbucket.org/my-workspace"),
    			ConnectionType: pulumi.String("Account"),
    			ValidationRepo: pulumi.String("some_repo"),
    			DelegateSelectors: pulumi.StringArray{
    				pulumi.String("harness-delegate"),
    			},
    			Credentials: &platform.BitbucketConnectorCredentialsArgs{
    				Http: &platform.BitbucketConnectorCredentialsHttpArgs{
    					Username:    pulumi.String("username"),
    					PasswordRef: pulumi.String("account.secret_id"),
    				},
    			},
    			ApiAuthentication: &platform.BitbucketConnectorApiAuthenticationArgs{
    				AuthType: pulumi.String("EmailAndApiToken"),
    				Email:    pulumi.String("user@example.com"),
    				TokenRef: pulumi.String("account.api_token_secret"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// Credentials http with Bitbucket repo/project Access Token
    		_, err = platform.NewBitbucketConnector(ctx, "access_token", &platform.BitbucketConnectorArgs{
    			Identifier:  pulumi.String("identifier_access_token"),
    			Name:        pulumi.String("name_access_token"),
    			Description: pulumi.String("Bitbucket with Access Token"),
    			Tags: pulumi.StringArray{
    				pulumi.String("foo:bar"),
    			},
    			Url:            pulumi.String("https://bitbucket.org/my-workspace"),
    			ConnectionType: pulumi.String("Account"),
    			ValidationRepo: pulumi.String("some_repo"),
    			DelegateSelectors: pulumi.StringArray{
    				pulumi.String("harness-delegate"),
    			},
    			Credentials: &platform.BitbucketConnectorCredentialsArgs{
    				Http: &platform.BitbucketConnectorCredentialsHttpArgs{
    					Username:    pulumi.String("username"),
    					PasswordRef: pulumi.String("account.secret_id"),
    				},
    			},
    			ApiAuthentication: &platform.BitbucketConnectorApiAuthenticationArgs{
    				AuthType: pulumi.String("AccessToken"),
    				TokenRef: pulumi.String("account.access_token_secret"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// Credentials ssh
    		_, err = platform.NewBitbucketConnector(ctx, "ssh", &platform.BitbucketConnectorArgs{
    			Identifier:  pulumi.String("identifier_ssh"),
    			Name:        pulumi.String("name_ssh"),
    			Description: pulumi.String("test"),
    			Tags: pulumi.StringArray{
    				pulumi.String("foo:bar"),
    			},
    			Url:            pulumi.String("https://bitbucket.com/account"),
    			ConnectionType: pulumi.String("Account"),
    			ValidationRepo: pulumi.String("some_repo"),
    			DelegateSelectors: pulumi.StringArray{
    				pulumi.String("harness-delegate"),
    			},
    			Credentials: &platform.BitbucketConnectorCredentialsArgs{
    				Ssh: &platform.BitbucketConnectorCredentialsSshArgs{
    					SshKeyRef: pulumi.String("account.secret_id"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Harness = Pulumi.Harness;
    
    return await Deployment.RunAsync(() => 
    {
        // Credentials http (with username + personal access token - UsernameToken)
        var usernameToken = new Harness.Platform.BitbucketConnector("username_token", new()
        {
            Identifier = "identifier",
            Name = "name",
            Description = "test",
            Tags = new[]
            {
                "foo:bar",
            },
            Url = "https://bitbucket.com/account",
            ConnectionType = "Account",
            ValidationRepo = "some_repo",
            DelegateSelectors = new[]
            {
                "harness-delegate",
            },
            Credentials = new Harness.Platform.Inputs.BitbucketConnectorCredentialsArgs
            {
                Http = new Harness.Platform.Inputs.BitbucketConnectorCredentialsHttpArgs
                {
                    Username = "username",
                    PasswordRef = "account.secret_id",
                },
            },
            ApiAuthentication = new Harness.Platform.Inputs.BitbucketConnectorApiAuthenticationArgs
            {
                AuthType = "UsernameToken",
                Username = "username",
                TokenRef = "account.secret_id",
            },
        });
    
        // Credentials http with Bitbucket Cloud Workspace API Token (email + API token)
        // Use this when migrating off Bitbucket app passwords (EOL 2026-06-09).
        var emailApiToken = new Harness.Platform.BitbucketConnector("email_api_token", new()
        {
            Identifier = "identifier_email_api_token",
            Name = "name_email_api_token",
            Description = "Bitbucket Cloud with Workspace API Token",
            Tags = new[]
            {
                "foo:bar",
            },
            Url = "https://bitbucket.org/my-workspace",
            ConnectionType = "Account",
            ValidationRepo = "some_repo",
            DelegateSelectors = new[]
            {
                "harness-delegate",
            },
            Credentials = new Harness.Platform.Inputs.BitbucketConnectorCredentialsArgs
            {
                Http = new Harness.Platform.Inputs.BitbucketConnectorCredentialsHttpArgs
                {
                    Username = "username",
                    PasswordRef = "account.secret_id",
                },
            },
            ApiAuthentication = new Harness.Platform.Inputs.BitbucketConnectorApiAuthenticationArgs
            {
                AuthType = "EmailAndApiToken",
                Email = "user@example.com",
                TokenRef = "account.api_token_secret",
            },
        });
    
        // Credentials http with Bitbucket repo/project Access Token
        var accessToken = new Harness.Platform.BitbucketConnector("access_token", new()
        {
            Identifier = "identifier_access_token",
            Name = "name_access_token",
            Description = "Bitbucket with Access Token",
            Tags = new[]
            {
                "foo:bar",
            },
            Url = "https://bitbucket.org/my-workspace",
            ConnectionType = "Account",
            ValidationRepo = "some_repo",
            DelegateSelectors = new[]
            {
                "harness-delegate",
            },
            Credentials = new Harness.Platform.Inputs.BitbucketConnectorCredentialsArgs
            {
                Http = new Harness.Platform.Inputs.BitbucketConnectorCredentialsHttpArgs
                {
                    Username = "username",
                    PasswordRef = "account.secret_id",
                },
            },
            ApiAuthentication = new Harness.Platform.Inputs.BitbucketConnectorApiAuthenticationArgs
            {
                AuthType = "AccessToken",
                TokenRef = "account.access_token_secret",
            },
        });
    
        // Credentials ssh
        var ssh = new Harness.Platform.BitbucketConnector("ssh", new()
        {
            Identifier = "identifier_ssh",
            Name = "name_ssh",
            Description = "test",
            Tags = new[]
            {
                "foo:bar",
            },
            Url = "https://bitbucket.com/account",
            ConnectionType = "Account",
            ValidationRepo = "some_repo",
            DelegateSelectors = new[]
            {
                "harness-delegate",
            },
            Credentials = new Harness.Platform.Inputs.BitbucketConnectorCredentialsArgs
            {
                Ssh = new Harness.Platform.Inputs.BitbucketConnectorCredentialsSshArgs
                {
                    SshKeyRef = "account.secret_id",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.harness.platform.BitbucketConnector;
    import com.pulumi.harness.platform.BitbucketConnectorArgs;
    import com.pulumi.harness.platform.inputs.BitbucketConnectorCredentialsArgs;
    import com.pulumi.harness.platform.inputs.BitbucketConnectorCredentialsHttpArgs;
    import com.pulumi.harness.platform.inputs.BitbucketConnectorApiAuthenticationArgs;
    import com.pulumi.harness.platform.inputs.BitbucketConnectorCredentialsSshArgs;
    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) {
            // Credentials http (with username + personal access token - UsernameToken)
            var usernameToken = new BitbucketConnector("usernameToken", BitbucketConnectorArgs.builder()
                .identifier("identifier")
                .name("name")
                .description("test")
                .tags("foo:bar")
                .url("https://bitbucket.com/account")
                .connectionType("Account")
                .validationRepo("some_repo")
                .delegateSelectors("harness-delegate")
                .credentials(BitbucketConnectorCredentialsArgs.builder()
                    .http(BitbucketConnectorCredentialsHttpArgs.builder()
                        .username("username")
                        .passwordRef("account.secret_id")
                        .build())
                    .build())
                .apiAuthentication(BitbucketConnectorApiAuthenticationArgs.builder()
                    .authType("UsernameToken")
                    .username("username")
                    .tokenRef("account.secret_id")
                    .build())
                .build());
    
            // Credentials http with Bitbucket Cloud Workspace API Token (email + API token)
            // Use this when migrating off Bitbucket app passwords (EOL 2026-06-09).
            var emailApiToken = new BitbucketConnector("emailApiToken", BitbucketConnectorArgs.builder()
                .identifier("identifier_email_api_token")
                .name("name_email_api_token")
                .description("Bitbucket Cloud with Workspace API Token")
                .tags("foo:bar")
                .url("https://bitbucket.org/my-workspace")
                .connectionType("Account")
                .validationRepo("some_repo")
                .delegateSelectors("harness-delegate")
                .credentials(BitbucketConnectorCredentialsArgs.builder()
                    .http(BitbucketConnectorCredentialsHttpArgs.builder()
                        .username("username")
                        .passwordRef("account.secret_id")
                        .build())
                    .build())
                .apiAuthentication(BitbucketConnectorApiAuthenticationArgs.builder()
                    .authType("EmailAndApiToken")
                    .email("user@example.com")
                    .tokenRef("account.api_token_secret")
                    .build())
                .build());
    
            // Credentials http with Bitbucket repo/project Access Token
            var accessToken = new BitbucketConnector("accessToken", BitbucketConnectorArgs.builder()
                .identifier("identifier_access_token")
                .name("name_access_token")
                .description("Bitbucket with Access Token")
                .tags("foo:bar")
                .url("https://bitbucket.org/my-workspace")
                .connectionType("Account")
                .validationRepo("some_repo")
                .delegateSelectors("harness-delegate")
                .credentials(BitbucketConnectorCredentialsArgs.builder()
                    .http(BitbucketConnectorCredentialsHttpArgs.builder()
                        .username("username")
                        .passwordRef("account.secret_id")
                        .build())
                    .build())
                .apiAuthentication(BitbucketConnectorApiAuthenticationArgs.builder()
                    .authType("AccessToken")
                    .tokenRef("account.access_token_secret")
                    .build())
                .build());
    
            // Credentials ssh
            var ssh = new BitbucketConnector("ssh", BitbucketConnectorArgs.builder()
                .identifier("identifier_ssh")
                .name("name_ssh")
                .description("test")
                .tags("foo:bar")
                .url("https://bitbucket.com/account")
                .connectionType("Account")
                .validationRepo("some_repo")
                .delegateSelectors("harness-delegate")
                .credentials(BitbucketConnectorCredentialsArgs.builder()
                    .ssh(BitbucketConnectorCredentialsSshArgs.builder()
                        .sshKeyRef("account.secret_id")
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      # Credentials http (with username + personal access token - UsernameToken)
      usernameToken:
        type: harness:platform:BitbucketConnector
        name: username_token
        properties:
          identifier: identifier
          name: name
          description: test
          tags:
            - foo:bar
          url: https://bitbucket.com/account
          connectionType: Account
          validationRepo: some_repo
          delegateSelectors:
            - harness-delegate
          credentials:
            http:
              username: username
              passwordRef: account.secret_id
          apiAuthentication:
            authType: UsernameToken
            username: username
            tokenRef: account.secret_id
      # Credentials http with Bitbucket Cloud Workspace API Token (email + API token)
      # Use this when migrating off Bitbucket app passwords (EOL 2026-06-09).
      emailApiToken:
        type: harness:platform:BitbucketConnector
        name: email_api_token
        properties:
          identifier: identifier_email_api_token
          name: name_email_api_token
          description: Bitbucket Cloud with Workspace API Token
          tags:
            - foo:bar
          url: https://bitbucket.org/my-workspace
          connectionType: Account
          validationRepo: some_repo
          delegateSelectors:
            - harness-delegate
          credentials:
            http:
              username: username
              passwordRef: account.secret_id
          apiAuthentication:
            authType: EmailAndApiToken
            email: user@example.com
            tokenRef: account.api_token_secret
      # Credentials http with Bitbucket repo/project Access Token
      accessToken:
        type: harness:platform:BitbucketConnector
        name: access_token
        properties:
          identifier: identifier_access_token
          name: name_access_token
          description: Bitbucket with Access Token
          tags:
            - foo:bar
          url: https://bitbucket.org/my-workspace
          connectionType: Account
          validationRepo: some_repo
          delegateSelectors:
            - harness-delegate
          credentials:
            http:
              username: username
              passwordRef: account.secret_id
          apiAuthentication:
            authType: AccessToken
            tokenRef: account.access_token_secret
      # Credentials ssh
      ssh:
        type: harness:platform:BitbucketConnector
        properties:
          identifier: identifier_ssh
          name: name_ssh
          description: test
          tags:
            - foo:bar
          url: https://bitbucket.com/account
          connectionType: Account
          validationRepo: some_repo
          delegateSelectors:
            - harness-delegate
          credentials:
            ssh:
              sshKeyRef: account.secret_id
    

    Create BitbucketConnector Resource

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

    Constructor syntax

    new BitbucketConnector(name: string, args: BitbucketConnectorArgs, opts?: CustomResourceOptions);
    @overload
    def BitbucketConnector(resource_name: str,
                           args: BitbucketConnectorArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def BitbucketConnector(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           connection_type: Optional[str] = None,
                           credentials: Optional[BitbucketConnectorCredentialsArgs] = None,
                           identifier: Optional[str] = None,
                           url: Optional[str] = None,
                           api_authentication: Optional[BitbucketConnectorApiAuthenticationArgs] = None,
                           delegate_selectors: Optional[Sequence[str]] = None,
                           description: Optional[str] = None,
                           name: Optional[str] = None,
                           org_id: Optional[str] = None,
                           project_id: Optional[str] = None,
                           tags: Optional[Sequence[str]] = None,
                           validation_repo: Optional[str] = None)
    func NewBitbucketConnector(ctx *Context, name string, args BitbucketConnectorArgs, opts ...ResourceOption) (*BitbucketConnector, error)
    public BitbucketConnector(string name, BitbucketConnectorArgs args, CustomResourceOptions? opts = null)
    public BitbucketConnector(String name, BitbucketConnectorArgs args)
    public BitbucketConnector(String name, BitbucketConnectorArgs args, CustomResourceOptions options)
    
    type: harness:platform:BitbucketConnector
    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 BitbucketConnectorArgs
    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 BitbucketConnectorArgs
    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 BitbucketConnectorArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BitbucketConnectorArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BitbucketConnectorArgs
    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 bitbucketConnectorResource = new Harness.Platform.BitbucketConnector("bitbucketConnectorResource", new()
    {
        ConnectionType = "string",
        Credentials = new Harness.Platform.Inputs.BitbucketConnectorCredentialsArgs
        {
            Http = new Harness.Platform.Inputs.BitbucketConnectorCredentialsHttpArgs
            {
                PasswordRef = "string",
                Username = "string",
                UsernameRef = "string",
            },
            Ssh = new Harness.Platform.Inputs.BitbucketConnectorCredentialsSshArgs
            {
                SshKeyRef = "string",
            },
        },
        Identifier = "string",
        Url = "string",
        ApiAuthentication = new Harness.Platform.Inputs.BitbucketConnectorApiAuthenticationArgs
        {
            TokenRef = "string",
            AuthType = "string",
            Email = "string",
            EmailRef = "string",
            Username = "string",
            UsernameRef = "string",
        },
        DelegateSelectors = new[]
        {
            "string",
        },
        Description = "string",
        Name = "string",
        OrgId = "string",
        ProjectId = "string",
        Tags = new[]
        {
            "string",
        },
        ValidationRepo = "string",
    });
    
    example, err := platform.NewBitbucketConnector(ctx, "bitbucketConnectorResource", &platform.BitbucketConnectorArgs{
    	ConnectionType: pulumi.String("string"),
    	Credentials: &platform.BitbucketConnectorCredentialsArgs{
    		Http: &platform.BitbucketConnectorCredentialsHttpArgs{
    			PasswordRef: pulumi.String("string"),
    			Username:    pulumi.String("string"),
    			UsernameRef: pulumi.String("string"),
    		},
    		Ssh: &platform.BitbucketConnectorCredentialsSshArgs{
    			SshKeyRef: pulumi.String("string"),
    		},
    	},
    	Identifier: pulumi.String("string"),
    	Url:        pulumi.String("string"),
    	ApiAuthentication: &platform.BitbucketConnectorApiAuthenticationArgs{
    		TokenRef:    pulumi.String("string"),
    		AuthType:    pulumi.String("string"),
    		Email:       pulumi.String("string"),
    		EmailRef:    pulumi.String("string"),
    		Username:    pulumi.String("string"),
    		UsernameRef: pulumi.String("string"),
    	},
    	DelegateSelectors: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Description: pulumi.String("string"),
    	Name:        pulumi.String("string"),
    	OrgId:       pulumi.String("string"),
    	ProjectId:   pulumi.String("string"),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ValidationRepo: pulumi.String("string"),
    })
    
    var bitbucketConnectorResource = new BitbucketConnector("bitbucketConnectorResource", BitbucketConnectorArgs.builder()
        .connectionType("string")
        .credentials(BitbucketConnectorCredentialsArgs.builder()
            .http(BitbucketConnectorCredentialsHttpArgs.builder()
                .passwordRef("string")
                .username("string")
                .usernameRef("string")
                .build())
            .ssh(BitbucketConnectorCredentialsSshArgs.builder()
                .sshKeyRef("string")
                .build())
            .build())
        .identifier("string")
        .url("string")
        .apiAuthentication(BitbucketConnectorApiAuthenticationArgs.builder()
            .tokenRef("string")
            .authType("string")
            .email("string")
            .emailRef("string")
            .username("string")
            .usernameRef("string")
            .build())
        .delegateSelectors("string")
        .description("string")
        .name("string")
        .orgId("string")
        .projectId("string")
        .tags("string")
        .validationRepo("string")
        .build());
    
    bitbucket_connector_resource = harness.platform.BitbucketConnector("bitbucketConnectorResource",
        connection_type="string",
        credentials={
            "http": {
                "password_ref": "string",
                "username": "string",
                "username_ref": "string",
            },
            "ssh": {
                "ssh_key_ref": "string",
            },
        },
        identifier="string",
        url="string",
        api_authentication={
            "token_ref": "string",
            "auth_type": "string",
            "email": "string",
            "email_ref": "string",
            "username": "string",
            "username_ref": "string",
        },
        delegate_selectors=["string"],
        description="string",
        name="string",
        org_id="string",
        project_id="string",
        tags=["string"],
        validation_repo="string")
    
    const bitbucketConnectorResource = new harness.platform.BitbucketConnector("bitbucketConnectorResource", {
        connectionType: "string",
        credentials: {
            http: {
                passwordRef: "string",
                username: "string",
                usernameRef: "string",
            },
            ssh: {
                sshKeyRef: "string",
            },
        },
        identifier: "string",
        url: "string",
        apiAuthentication: {
            tokenRef: "string",
            authType: "string",
            email: "string",
            emailRef: "string",
            username: "string",
            usernameRef: "string",
        },
        delegateSelectors: ["string"],
        description: "string",
        name: "string",
        orgId: "string",
        projectId: "string",
        tags: ["string"],
        validationRepo: "string",
    });
    
    type: harness:platform:BitbucketConnector
    properties:
        apiAuthentication:
            authType: string
            email: string
            emailRef: string
            tokenRef: string
            username: string
            usernameRef: string
        connectionType: string
        credentials:
            http:
                passwordRef: string
                username: string
                usernameRef: string
            ssh:
                sshKeyRef: string
        delegateSelectors:
            - string
        description: string
        identifier: string
        name: string
        orgId: string
        projectId: string
        tags:
            - string
        url: string
        validationRepo: string
    

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

    ConnectionType string
    Whether the connection we're making is to a BitBucket repository or a BitBucket account. Valid values are Account, Repo.
    Credentials BitbucketConnectorCredentials
    Credentials to use for the connection.
    Identifier string
    Unique identifier of the resource.
    Url string
    URL of the BitBucket repository or account.
    ApiAuthentication BitbucketConnectorApiAuthentication
    Configuration for using the BitBucket api. API Access is required for using “Git Experience”, for creation of Git based triggers, Webhooks management and updating Git statuses.
    DelegateSelectors List<string>
    Tags to filter delegates for connection.
    Description string
    Description of the resource.
    Name string
    Name of the resource.
    OrgId string
    Unique identifier of the organization.
    ProjectId string
    Unique identifier of the project.
    Tags List<string>
    Tags to associate with the resource.
    ValidationRepo string
    Repository to test the connection with. This is only used when connectionType is Account.
    ConnectionType string
    Whether the connection we're making is to a BitBucket repository or a BitBucket account. Valid values are Account, Repo.
    Credentials BitbucketConnectorCredentialsArgs
    Credentials to use for the connection.
    Identifier string
    Unique identifier of the resource.
    Url string
    URL of the BitBucket repository or account.
    ApiAuthentication BitbucketConnectorApiAuthenticationArgs
    Configuration for using the BitBucket api. API Access is required for using “Git Experience”, for creation of Git based triggers, Webhooks management and updating Git statuses.
    DelegateSelectors []string
    Tags to filter delegates for connection.
    Description string
    Description of the resource.
    Name string
    Name of the resource.
    OrgId string
    Unique identifier of the organization.
    ProjectId string
    Unique identifier of the project.
    Tags []string
    Tags to associate with the resource.
    ValidationRepo string
    Repository to test the connection with. This is only used when connectionType is Account.
    connectionType String
    Whether the connection we're making is to a BitBucket repository or a BitBucket account. Valid values are Account, Repo.
    credentials BitbucketConnectorCredentials
    Credentials to use for the connection.
    identifier String
    Unique identifier of the resource.
    url String
    URL of the BitBucket repository or account.
    apiAuthentication BitbucketConnectorApiAuthentication
    Configuration for using the BitBucket api. API Access is required for using “Git Experience”, for creation of Git based triggers, Webhooks management and updating Git statuses.
    delegateSelectors List<String>
    Tags to filter delegates for connection.
    description String
    Description of the resource.
    name String
    Name of the resource.
    orgId String
    Unique identifier of the organization.
    projectId String
    Unique identifier of the project.
    tags List<String>
    Tags to associate with the resource.
    validationRepo String
    Repository to test the connection with. This is only used when connectionType is Account.
    connectionType string
    Whether the connection we're making is to a BitBucket repository or a BitBucket account. Valid values are Account, Repo.
    credentials BitbucketConnectorCredentials
    Credentials to use for the connection.
    identifier string
    Unique identifier of the resource.
    url string
    URL of the BitBucket repository or account.
    apiAuthentication BitbucketConnectorApiAuthentication
    Configuration for using the BitBucket api. API Access is required for using “Git Experience”, for creation of Git based triggers, Webhooks management and updating Git statuses.
    delegateSelectors string[]
    Tags to filter delegates for connection.
    description string
    Description of the resource.
    name string
    Name of the resource.
    orgId string
    Unique identifier of the organization.
    projectId string
    Unique identifier of the project.
    tags string[]
    Tags to associate with the resource.
    validationRepo string
    Repository to test the connection with. This is only used when connectionType is Account.
    connection_type str
    Whether the connection we're making is to a BitBucket repository or a BitBucket account. Valid values are Account, Repo.
    credentials BitbucketConnectorCredentialsArgs
    Credentials to use for the connection.
    identifier str
    Unique identifier of the resource.
    url str
    URL of the BitBucket repository or account.
    api_authentication BitbucketConnectorApiAuthenticationArgs
    Configuration for using the BitBucket api. API Access is required for using “Git Experience”, for creation of Git based triggers, Webhooks management and updating Git statuses.
    delegate_selectors Sequence[str]
    Tags to filter delegates for connection.
    description str
    Description of the resource.
    name str
    Name of the resource.
    org_id str
    Unique identifier of the organization.
    project_id str
    Unique identifier of the project.
    tags Sequence[str]
    Tags to associate with the resource.
    validation_repo str
    Repository to test the connection with. This is only used when connectionType is Account.
    connectionType String
    Whether the connection we're making is to a BitBucket repository or a BitBucket account. Valid values are Account, Repo.
    credentials Property Map
    Credentials to use for the connection.
    identifier String
    Unique identifier of the resource.
    url String
    URL of the BitBucket repository or account.
    apiAuthentication Property Map
    Configuration for using the BitBucket api. API Access is required for using “Git Experience”, for creation of Git based triggers, Webhooks management and updating Git statuses.
    delegateSelectors List<String>
    Tags to filter delegates for connection.
    description String
    Description of the resource.
    name String
    Name of the resource.
    orgId String
    Unique identifier of the organization.
    projectId String
    Unique identifier of the project.
    tags List<String>
    Tags to associate with the resource.
    validationRepo String
    Repository to test the connection with. This is only used when connectionType is Account.

    Outputs

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

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

    Look up Existing BitbucketConnector Resource

    Get an existing BitbucketConnector 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?: BitbucketConnectorState, opts?: CustomResourceOptions): BitbucketConnector
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            api_authentication: Optional[BitbucketConnectorApiAuthenticationArgs] = None,
            connection_type: Optional[str] = None,
            credentials: Optional[BitbucketConnectorCredentialsArgs] = None,
            delegate_selectors: Optional[Sequence[str]] = None,
            description: Optional[str] = None,
            identifier: Optional[str] = None,
            name: Optional[str] = None,
            org_id: Optional[str] = None,
            project_id: Optional[str] = None,
            tags: Optional[Sequence[str]] = None,
            url: Optional[str] = None,
            validation_repo: Optional[str] = None) -> BitbucketConnector
    func GetBitbucketConnector(ctx *Context, name string, id IDInput, state *BitbucketConnectorState, opts ...ResourceOption) (*BitbucketConnector, error)
    public static BitbucketConnector Get(string name, Input<string> id, BitbucketConnectorState? state, CustomResourceOptions? opts = null)
    public static BitbucketConnector get(String name, Output<String> id, BitbucketConnectorState state, CustomResourceOptions options)
    resources:  _:    type: harness:platform:BitbucketConnector    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:
    ApiAuthentication BitbucketConnectorApiAuthentication
    Configuration for using the BitBucket api. API Access is required for using “Git Experience”, for creation of Git based triggers, Webhooks management and updating Git statuses.
    ConnectionType string
    Whether the connection we're making is to a BitBucket repository or a BitBucket account. Valid values are Account, Repo.
    Credentials BitbucketConnectorCredentials
    Credentials to use for the connection.
    DelegateSelectors List<string>
    Tags to filter delegates for connection.
    Description string
    Description of the resource.
    Identifier string
    Unique identifier of the resource.
    Name string
    Name of the resource.
    OrgId string
    Unique identifier of the organization.
    ProjectId string
    Unique identifier of the project.
    Tags List<string>
    Tags to associate with the resource.
    Url string
    URL of the BitBucket repository or account.
    ValidationRepo string
    Repository to test the connection with. This is only used when connectionType is Account.
    ApiAuthentication BitbucketConnectorApiAuthenticationArgs
    Configuration for using the BitBucket api. API Access is required for using “Git Experience”, for creation of Git based triggers, Webhooks management and updating Git statuses.
    ConnectionType string
    Whether the connection we're making is to a BitBucket repository or a BitBucket account. Valid values are Account, Repo.
    Credentials BitbucketConnectorCredentialsArgs
    Credentials to use for the connection.
    DelegateSelectors []string
    Tags to filter delegates for connection.
    Description string
    Description of the resource.
    Identifier string
    Unique identifier of the resource.
    Name string
    Name of the resource.
    OrgId string
    Unique identifier of the organization.
    ProjectId string
    Unique identifier of the project.
    Tags []string
    Tags to associate with the resource.
    Url string
    URL of the BitBucket repository or account.
    ValidationRepo string
    Repository to test the connection with. This is only used when connectionType is Account.
    apiAuthentication BitbucketConnectorApiAuthentication
    Configuration for using the BitBucket api. API Access is required for using “Git Experience”, for creation of Git based triggers, Webhooks management and updating Git statuses.
    connectionType String
    Whether the connection we're making is to a BitBucket repository or a BitBucket account. Valid values are Account, Repo.
    credentials BitbucketConnectorCredentials
    Credentials to use for the connection.
    delegateSelectors List<String>
    Tags to filter delegates for connection.
    description String
    Description of the resource.
    identifier String
    Unique identifier of the resource.
    name String
    Name of the resource.
    orgId String
    Unique identifier of the organization.
    projectId String
    Unique identifier of the project.
    tags List<String>
    Tags to associate with the resource.
    url String
    URL of the BitBucket repository or account.
    validationRepo String
    Repository to test the connection with. This is only used when connectionType is Account.
    apiAuthentication BitbucketConnectorApiAuthentication
    Configuration for using the BitBucket api. API Access is required for using “Git Experience”, for creation of Git based triggers, Webhooks management and updating Git statuses.
    connectionType string
    Whether the connection we're making is to a BitBucket repository or a BitBucket account. Valid values are Account, Repo.
    credentials BitbucketConnectorCredentials
    Credentials to use for the connection.
    delegateSelectors string[]
    Tags to filter delegates for connection.
    description string
    Description of the resource.
    identifier string
    Unique identifier of the resource.
    name string
    Name of the resource.
    orgId string
    Unique identifier of the organization.
    projectId string
    Unique identifier of the project.
    tags string[]
    Tags to associate with the resource.
    url string
    URL of the BitBucket repository or account.
    validationRepo string
    Repository to test the connection with. This is only used when connectionType is Account.
    api_authentication BitbucketConnectorApiAuthenticationArgs
    Configuration for using the BitBucket api. API Access is required for using “Git Experience”, for creation of Git based triggers, Webhooks management and updating Git statuses.
    connection_type str
    Whether the connection we're making is to a BitBucket repository or a BitBucket account. Valid values are Account, Repo.
    credentials BitbucketConnectorCredentialsArgs
    Credentials to use for the connection.
    delegate_selectors Sequence[str]
    Tags to filter delegates for connection.
    description str
    Description of the resource.
    identifier str
    Unique identifier of the resource.
    name str
    Name of the resource.
    org_id str
    Unique identifier of the organization.
    project_id str
    Unique identifier of the project.
    tags Sequence[str]
    Tags to associate with the resource.
    url str
    URL of the BitBucket repository or account.
    validation_repo str
    Repository to test the connection with. This is only used when connectionType is Account.
    apiAuthentication Property Map
    Configuration for using the BitBucket api. API Access is required for using “Git Experience”, for creation of Git based triggers, Webhooks management and updating Git statuses.
    connectionType String
    Whether the connection we're making is to a BitBucket repository or a BitBucket account. Valid values are Account, Repo.
    credentials Property Map
    Credentials to use for the connection.
    delegateSelectors List<String>
    Tags to filter delegates for connection.
    description String
    Description of the resource.
    identifier String
    Unique identifier of the resource.
    name String
    Name of the resource.
    orgId String
    Unique identifier of the organization.
    projectId String
    Unique identifier of the project.
    tags List<String>
    Tags to associate with the resource.
    url String
    URL of the BitBucket repository or account.
    validationRepo String
    Repository to test the connection with. This is only used when connectionType is Account.

    Supporting Types

    BitbucketConnectorApiAuthentication, BitbucketConnectorApiAuthenticationArgs

    TokenRef string
    Reference to a Harness secret containing the personal access token (or API token for EmailAndApiToken/AccessToken) for interacting with the BitBucket api. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    AuthType string
    Type of API authentication. Valid values are UsernameToken, AccessToken, EmailAndApiToken. Defaults to UsernameToken for backward compatibility.
    Email string
    The email used for connecting to the api. Applicable when authType is EmailAndApiToken.
    EmailRef string
    The name of the Harness secret containing the email. Applicable when authType is EmailAndApiToken. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    Username string
    The username used for connecting to the api. Applicable when authType is UsernameToken.
    UsernameRef string
    The name of the Harness secret containing the username. Applicable when authType is UsernameToken. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    TokenRef string
    Reference to a Harness secret containing the personal access token (or API token for EmailAndApiToken/AccessToken) for interacting with the BitBucket api. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    AuthType string
    Type of API authentication. Valid values are UsernameToken, AccessToken, EmailAndApiToken. Defaults to UsernameToken for backward compatibility.
    Email string
    The email used for connecting to the api. Applicable when authType is EmailAndApiToken.
    EmailRef string
    The name of the Harness secret containing the email. Applicable when authType is EmailAndApiToken. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    Username string
    The username used for connecting to the api. Applicable when authType is UsernameToken.
    UsernameRef string
    The name of the Harness secret containing the username. Applicable when authType is UsernameToken. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    tokenRef String
    Reference to a Harness secret containing the personal access token (or API token for EmailAndApiToken/AccessToken) for interacting with the BitBucket api. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    authType String
    Type of API authentication. Valid values are UsernameToken, AccessToken, EmailAndApiToken. Defaults to UsernameToken for backward compatibility.
    email String
    The email used for connecting to the api. Applicable when authType is EmailAndApiToken.
    emailRef String
    The name of the Harness secret containing the email. Applicable when authType is EmailAndApiToken. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    username String
    The username used for connecting to the api. Applicable when authType is UsernameToken.
    usernameRef String
    The name of the Harness secret containing the username. Applicable when authType is UsernameToken. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    tokenRef string
    Reference to a Harness secret containing the personal access token (or API token for EmailAndApiToken/AccessToken) for interacting with the BitBucket api. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    authType string
    Type of API authentication. Valid values are UsernameToken, AccessToken, EmailAndApiToken. Defaults to UsernameToken for backward compatibility.
    email string
    The email used for connecting to the api. Applicable when authType is EmailAndApiToken.
    emailRef string
    The name of the Harness secret containing the email. Applicable when authType is EmailAndApiToken. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    username string
    The username used for connecting to the api. Applicable when authType is UsernameToken.
    usernameRef string
    The name of the Harness secret containing the username. Applicable when authType is UsernameToken. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    token_ref str
    Reference to a Harness secret containing the personal access token (or API token for EmailAndApiToken/AccessToken) for interacting with the BitBucket api. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    auth_type str
    Type of API authentication. Valid values are UsernameToken, AccessToken, EmailAndApiToken. Defaults to UsernameToken for backward compatibility.
    email str
    The email used for connecting to the api. Applicable when authType is EmailAndApiToken.
    email_ref str
    The name of the Harness secret containing the email. Applicable when authType is EmailAndApiToken. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    username str
    The username used for connecting to the api. Applicable when authType is UsernameToken.
    username_ref str
    The name of the Harness secret containing the username. Applicable when authType is UsernameToken. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    tokenRef String
    Reference to a Harness secret containing the personal access token (or API token for EmailAndApiToken/AccessToken) for interacting with the BitBucket api. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    authType String
    Type of API authentication. Valid values are UsernameToken, AccessToken, EmailAndApiToken. Defaults to UsernameToken for backward compatibility.
    email String
    The email used for connecting to the api. Applicable when authType is EmailAndApiToken.
    emailRef String
    The name of the Harness secret containing the email. Applicable when authType is EmailAndApiToken. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    username String
    The username used for connecting to the api. Applicable when authType is UsernameToken.
    usernameRef String
    The name of the Harness secret containing the username. Applicable when authType is UsernameToken. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.

    BitbucketConnectorCredentials, BitbucketConnectorCredentialsArgs

    Http BitbucketConnectorCredentialsHttp
    Authenticate using Username and password over http(s) for the connection.
    Ssh BitbucketConnectorCredentialsSsh
    Authenticate using SSH for the connection.
    Http BitbucketConnectorCredentialsHttp
    Authenticate using Username and password over http(s) for the connection.
    Ssh BitbucketConnectorCredentialsSsh
    Authenticate using SSH for the connection.
    http BitbucketConnectorCredentialsHttp
    Authenticate using Username and password over http(s) for the connection.
    ssh BitbucketConnectorCredentialsSsh
    Authenticate using SSH for the connection.
    http BitbucketConnectorCredentialsHttp
    Authenticate using Username and password over http(s) for the connection.
    ssh BitbucketConnectorCredentialsSsh
    Authenticate using SSH for the connection.
    http BitbucketConnectorCredentialsHttp
    Authenticate using Username and password over http(s) for the connection.
    ssh BitbucketConnectorCredentialsSsh
    Authenticate using SSH for the connection.
    http Property Map
    Authenticate using Username and password over http(s) for the connection.
    ssh Property Map
    Authenticate using SSH for the connection.

    BitbucketConnectorCredentialsHttp, BitbucketConnectorCredentialsHttpArgs

    PasswordRef string
    Reference to a secret containing the password to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    Username string
    Username to use for authentication.
    UsernameRef string
    Reference to a secret containing the username to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    PasswordRef string
    Reference to a secret containing the password to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    Username string
    Username to use for authentication.
    UsernameRef string
    Reference to a secret containing the username to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    passwordRef String
    Reference to a secret containing the password to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    username String
    Username to use for authentication.
    usernameRef String
    Reference to a secret containing the username to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    passwordRef string
    Reference to a secret containing the password to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    username string
    Username to use for authentication.
    usernameRef string
    Reference to a secret containing the username to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    password_ref str
    Reference to a secret containing the password to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    username str
    Username to use for authentication.
    username_ref str
    Reference to a secret containing the username to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    passwordRef String
    Reference to a secret containing the password to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    username String
    Username to use for authentication.
    usernameRef String
    Reference to a secret containing the username to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.

    BitbucketConnectorCredentialsSsh, BitbucketConnectorCredentialsSshArgs

    SshKeyRef string
    Reference to the Harness secret containing the ssh key. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    SshKeyRef string
    Reference to the Harness secret containing the ssh key. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    sshKeyRef String
    Reference to the Harness secret containing the ssh key. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    sshKeyRef string
    Reference to the Harness secret containing the ssh key. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    ssh_key_ref str
    Reference to the Harness secret containing the ssh key. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
    sshKeyRef String
    Reference to the Harness secret containing the ssh key. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.

    Import

    The pulumi import command can be used, for example:

    Import account level bitbucket connector

    $ pulumi import harness:platform/bitbucketConnector:BitbucketConnector example <connector_id>
    

    Import org level bitbucket connector

    $ pulumi import harness:platform/bitbucketConnector:BitbucketConnector example <ord_id>/<connector_id>
    

    Import project level bitbucket connector

    $ pulumi import harness:platform/bitbucketConnector:BitbucketConnector example <org_id>/<project_id>/<connector_id>
    

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

    Package Details

    Repository
    harness pulumi/pulumi-harness
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the harness Terraform Provider.
    harness logo
    Viewing docs for Harness v0.12.0
    published on Tuesday, Apr 21, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.