harness.platform.ConnectorRancher
Explore with Pulumi AI
Resource for creating a Rancher connector.
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
Coming soon!
resources:
bearerToken:
type: harness:platform:KubernetesConnector
name: bearer_token
properties:
identifier: identifier
name: name
description: description
tags:
- foo:bar
delegateSelectors:
- harness-delegate
rancherUrl: https://rancher.cluster.example
bearerToken:
- bearerTokenRef: account.test_rancher_bearer_token
Create ConnectorRancher Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ConnectorRancher(name: string, args: ConnectorRancherArgs, opts?: CustomResourceOptions);
@overload
def ConnectorRancher(resource_name: str,
args: ConnectorRancherArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ConnectorRancher(resource_name: str,
opts: Optional[ResourceOptions] = None,
identifier: Optional[str] = None,
rancher_url: Optional[str] = None,
bearer_token: Optional[ConnectorRancherBearerTokenArgs] = None,
delegate_selectors: Optional[Sequence[str]] = None,
description: Optional[str] = None,
force_delete: Optional[bool] = None,
name: Optional[str] = None,
org_id: Optional[str] = None,
project_id: Optional[str] = None,
tags: Optional[Sequence[str]] = None)
func NewConnectorRancher(ctx *Context, name string, args ConnectorRancherArgs, opts ...ResourceOption) (*ConnectorRancher, error)
public ConnectorRancher(string name, ConnectorRancherArgs args, CustomResourceOptions? opts = null)
public ConnectorRancher(String name, ConnectorRancherArgs args)
public ConnectorRancher(String name, ConnectorRancherArgs args, CustomResourceOptions options)
type: harness:platform:ConnectorRancher
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 ConnectorRancherArgs
- 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 ConnectorRancherArgs
- 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 ConnectorRancherArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConnectorRancherArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ConnectorRancherArgs
- 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 connectorRancherResource = new Harness.Platform.ConnectorRancher("connectorRancherResource", new()
{
Identifier = "string",
RancherUrl = "string",
BearerToken = new Harness.Platform.Inputs.ConnectorRancherBearerTokenArgs
{
BearerTokenRef = "string",
},
DelegateSelectors = new[]
{
"string",
},
Description = "string",
ForceDelete = false,
Name = "string",
OrgId = "string",
ProjectId = "string",
Tags = new[]
{
"string",
},
});
example, err := platform.NewConnectorRancher(ctx, "connectorRancherResource", &platform.ConnectorRancherArgs{
Identifier: pulumi.String("string"),
RancherUrl: pulumi.String("string"),
BearerToken: &platform.ConnectorRancherBearerTokenArgs{
BearerTokenRef: pulumi.String("string"),
},
DelegateSelectors: pulumi.StringArray{
pulumi.String("string"),
},
Description: pulumi.String("string"),
ForceDelete: pulumi.Bool(false),
Name: pulumi.String("string"),
OrgId: pulumi.String("string"),
ProjectId: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
})
var connectorRancherResource = new ConnectorRancher("connectorRancherResource", ConnectorRancherArgs.builder()
.identifier("string")
.rancherUrl("string")
.bearerToken(ConnectorRancherBearerTokenArgs.builder()
.bearerTokenRef("string")
.build())
.delegateSelectors("string")
.description("string")
.forceDelete(false)
.name("string")
.orgId("string")
.projectId("string")
.tags("string")
.build());
connector_rancher_resource = harness.platform.ConnectorRancher("connectorRancherResource",
identifier="string",
rancher_url="string",
bearer_token=harness.platform.ConnectorRancherBearerTokenArgs(
bearer_token_ref="string",
),
delegate_selectors=["string"],
description="string",
force_delete=False,
name="string",
org_id="string",
project_id="string",
tags=["string"])
const connectorRancherResource = new harness.platform.ConnectorRancher("connectorRancherResource", {
identifier: "string",
rancherUrl: "string",
bearerToken: {
bearerTokenRef: "string",
},
delegateSelectors: ["string"],
description: "string",
forceDelete: false,
name: "string",
orgId: "string",
projectId: "string",
tags: ["string"],
});
type: harness:platform:ConnectorRancher
properties:
bearerToken:
bearerTokenRef: string
delegateSelectors:
- string
description: string
forceDelete: false
identifier: string
name: string
orgId: string
projectId: string
rancherUrl: string
tags:
- string
ConnectorRancher Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ConnectorRancher resource accepts the following input properties:
- Identifier string
- Unique identifier of the resource.
- Rancher
Url string - The URL of the Rancher cluster.
- Bearer
Token ConnectorRancher Bearer Token - Bearer token information for the rancher cluster.
- Delegate
Selectors List<string> - Selectors to use for the delegate.
- Description string
- Description of the resource.
- Force
Delete bool - Enable this flag for force deletion of connector
- Name string
- Name of the resource.
- Org
Id string - Unique identifier of the organization.
- Project
Id string - Unique identifier of the project.
- List<string>
- Tags to associate with the resource.
- Identifier string
- Unique identifier of the resource.
- Rancher
Url string - The URL of the Rancher cluster.
- Bearer
Token ConnectorRancher Bearer Token Args - Bearer token information for the rancher cluster.
- Delegate
Selectors []string - Selectors to use for the delegate.
- Description string
- Description of the resource.
- Force
Delete bool - Enable this flag for force deletion of connector
- Name string
- Name of the resource.
- Org
Id string - Unique identifier of the organization.
- Project
Id string - Unique identifier of the project.
- []string
- Tags to associate with the resource.
- identifier String
- Unique identifier of the resource.
- rancher
Url String - The URL of the Rancher cluster.
- bearer
Token ConnectorRancher Bearer Token - Bearer token information for the rancher cluster.
- delegate
Selectors List<String> - Selectors to use for the delegate.
- description String
- Description of the resource.
- force
Delete Boolean - Enable this flag for force deletion of connector
- name String
- Name of the resource.
- org
Id String - Unique identifier of the organization.
- project
Id String - Unique identifier of the project.
- List<String>
- Tags to associate with the resource.
- identifier string
- Unique identifier of the resource.
- rancher
Url string - The URL of the Rancher cluster.
- bearer
Token ConnectorRancher Bearer Token - Bearer token information for the rancher cluster.
- delegate
Selectors string[] - Selectors to use for the delegate.
- description string
- Description of the resource.
- force
Delete boolean - Enable this flag for force deletion of connector
- name string
- Name of the resource.
- org
Id string - Unique identifier of the organization.
- project
Id string - Unique identifier of the project.
- string[]
- Tags to associate with the resource.
- identifier str
- Unique identifier of the resource.
- rancher_
url str - The URL of the Rancher cluster.
- bearer_
token ConnectorRancher Bearer Token Args - Bearer token information for the rancher cluster.
- delegate_
selectors Sequence[str] - Selectors to use for the delegate.
- description str
- Description of the resource.
- force_
delete bool - Enable this flag for force deletion of connector
- name str
- Name of the resource.
- org_
id str - Unique identifier of the organization.
- project_
id str - Unique identifier of the project.
- Sequence[str]
- Tags to associate with the resource.
- identifier String
- Unique identifier of the resource.
- rancher
Url String - The URL of the Rancher cluster.
- bearer
Token Property Map - Bearer token information for the rancher cluster.
- delegate
Selectors List<String> - Selectors to use for the delegate.
- description String
- Description of the resource.
- force
Delete Boolean - Enable this flag for force deletion of connector
- name String
- Name of the resource.
- org
Id String - Unique identifier of the organization.
- project
Id String - Unique identifier of the project.
- List<String>
- Tags to associate with the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the ConnectorRancher 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 ConnectorRancher Resource
Get an existing ConnectorRancher 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?: ConnectorRancherState, opts?: CustomResourceOptions): ConnectorRancher
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
bearer_token: Optional[ConnectorRancherBearerTokenArgs] = None,
delegate_selectors: Optional[Sequence[str]] = None,
description: Optional[str] = None,
force_delete: Optional[bool] = None,
identifier: Optional[str] = None,
name: Optional[str] = None,
org_id: Optional[str] = None,
project_id: Optional[str] = None,
rancher_url: Optional[str] = None,
tags: Optional[Sequence[str]] = None) -> ConnectorRancher
func GetConnectorRancher(ctx *Context, name string, id IDInput, state *ConnectorRancherState, opts ...ResourceOption) (*ConnectorRancher, error)
public static ConnectorRancher Get(string name, Input<string> id, ConnectorRancherState? state, CustomResourceOptions? opts = null)
public static ConnectorRancher get(String name, Output<String> id, ConnectorRancherState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Bearer
Token ConnectorRancher Bearer Token - Bearer token information for the rancher cluster.
- Delegate
Selectors List<string> - Selectors to use for the delegate.
- Description string
- Description of the resource.
- Force
Delete bool - Enable this flag for force deletion of connector
- Identifier string
- Unique identifier of the resource.
- Name string
- Name of the resource.
- Org
Id string - Unique identifier of the organization.
- Project
Id string - Unique identifier of the project.
- Rancher
Url string - The URL of the Rancher cluster.
- List<string>
- Tags to associate with the resource.
- Bearer
Token ConnectorRancher Bearer Token Args - Bearer token information for the rancher cluster.
- Delegate
Selectors []string - Selectors to use for the delegate.
- Description string
- Description of the resource.
- Force
Delete bool - Enable this flag for force deletion of connector
- Identifier string
- Unique identifier of the resource.
- Name string
- Name of the resource.
- Org
Id string - Unique identifier of the organization.
- Project
Id string - Unique identifier of the project.
- Rancher
Url string - The URL of the Rancher cluster.
- []string
- Tags to associate with the resource.
- bearer
Token ConnectorRancher Bearer Token - Bearer token information for the rancher cluster.
- delegate
Selectors List<String> - Selectors to use for the delegate.
- description String
- Description of the resource.
- force
Delete Boolean - Enable this flag for force deletion of connector
- identifier String
- Unique identifier of the resource.
- name String
- Name of the resource.
- org
Id String - Unique identifier of the organization.
- project
Id String - Unique identifier of the project.
- rancher
Url String - The URL of the Rancher cluster.
- List<String>
- Tags to associate with the resource.
- bearer
Token ConnectorRancher Bearer Token - Bearer token information for the rancher cluster.
- delegate
Selectors string[] - Selectors to use for the delegate.
- description string
- Description of the resource.
- force
Delete boolean - Enable this flag for force deletion of connector
- identifier string
- Unique identifier of the resource.
- name string
- Name of the resource.
- org
Id string - Unique identifier of the organization.
- project
Id string - Unique identifier of the project.
- rancher
Url string - The URL of the Rancher cluster.
- string[]
- Tags to associate with the resource.
- bearer_
token ConnectorRancher Bearer Token Args - Bearer token information for the rancher cluster.
- delegate_
selectors Sequence[str] - Selectors to use for the delegate.
- description str
- Description of the resource.
- force_
delete bool - Enable this flag for force deletion of connector
- 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.
- rancher_
url str - The URL of the Rancher cluster.
- Sequence[str]
- Tags to associate with the resource.
- bearer
Token Property Map - Bearer token information for the rancher cluster.
- delegate
Selectors List<String> - Selectors to use for the delegate.
- description String
- Description of the resource.
- force
Delete Boolean - Enable this flag for force deletion of connector
- identifier String
- Unique identifier of the resource.
- name String
- Name of the resource.
- org
Id String - Unique identifier of the organization.
- project
Id String - Unique identifier of the project.
- rancher
Url String - The URL of the Rancher cluster.
- List<String>
- Tags to associate with the resource.
Supporting Types
ConnectorRancherBearerToken, ConnectorRancherBearerTokenArgs
- Bearer
Token stringRef - Reference to the secret containing the bearer token for the rancher cluster. 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}.
- Bearer
Token stringRef - Reference to the secret containing the bearer token for the rancher cluster. 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}.
- bearer
Token StringRef - Reference to the secret containing the bearer token for the rancher cluster. 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}.
- bearer
Token stringRef - Reference to the secret containing the bearer token for the rancher cluster. 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}.
- bearer_
token_ strref - Reference to the secret containing the bearer token for the rancher cluster. 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}.
- bearer
Token StringRef - Reference to the secret containing the bearer token for the rancher cluster. 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
Import account level rancher connector
$ pulumi import harness:platform/connectorRancher:ConnectorRancher example <connector_id>
Import org level rancher connector
$ pulumi import harness:platform/connectorRancher:ConnectorRancher example <ord_id>/<connector_id>
Import project level rancher connector
$ pulumi import harness:platform/connectorRancher:ConnectorRancher 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.