harness.platform.AwsConnector
Explore with Pulumi AI
Resource for creating an AWS connector.
Create AwsConnector Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AwsConnector(name: string, args: AwsConnectorArgs, opts?: CustomResourceOptions);
@overload
def AwsConnector(resource_name: str,
args: AwsConnectorArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AwsConnector(resource_name: str,
opts: Optional[ResourceOptions] = None,
identifier: Optional[str] = None,
fixed_delay_backoff_strategy: Optional[AwsConnectorFixedDelayBackoffStrategyArgs] = None,
irsa: Optional[AwsConnectorIrsaArgs] = None,
cross_account_access: Optional[AwsConnectorCrossAccountAccessArgs] = None,
force_delete: Optional[bool] = None,
full_jitter_backoff_strategy: Optional[AwsConnectorFullJitterBackoffStrategyArgs] = None,
description: Optional[str] = None,
inherit_from_delegate: Optional[AwsConnectorInheritFromDelegateArgs] = None,
equal_jitter_backoff_strategy: Optional[AwsConnectorEqualJitterBackoffStrategyArgs] = None,
manual: Optional[AwsConnectorManualArgs] = None,
name: Optional[str] = None,
oidc_authentication: Optional[AwsConnectorOidcAuthenticationArgs] = None,
org_id: Optional[str] = None,
project_id: Optional[str] = None,
tags: Optional[Sequence[str]] = None)
func NewAwsConnector(ctx *Context, name string, args AwsConnectorArgs, opts ...ResourceOption) (*AwsConnector, error)
public AwsConnector(string name, AwsConnectorArgs args, CustomResourceOptions? opts = null)
public AwsConnector(String name, AwsConnectorArgs args)
public AwsConnector(String name, AwsConnectorArgs args, CustomResourceOptions options)
type: harness:platform:AwsConnector
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 AwsConnectorArgs
- 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 AwsConnectorArgs
- 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 AwsConnectorArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AwsConnectorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AwsConnectorArgs
- 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 awsConnectorResource = new Harness.Platform.AwsConnector("awsConnectorResource", new()
{
Identifier = "string",
FixedDelayBackoffStrategy = new Harness.Platform.Inputs.AwsConnectorFixedDelayBackoffStrategyArgs
{
FixedBackoff = 0,
RetryCount = 0,
},
Irsa = new Harness.Platform.Inputs.AwsConnectorIrsaArgs
{
DelegateSelectors = new[]
{
"string",
},
Region = "string",
},
CrossAccountAccess = new Harness.Platform.Inputs.AwsConnectorCrossAccountAccessArgs
{
RoleArn = "string",
ExternalId = "string",
},
ForceDelete = false,
FullJitterBackoffStrategy = new Harness.Platform.Inputs.AwsConnectorFullJitterBackoffStrategyArgs
{
BaseDelay = 0,
MaxBackoffTime = 0,
RetryCount = 0,
},
Description = "string",
InheritFromDelegate = new Harness.Platform.Inputs.AwsConnectorInheritFromDelegateArgs
{
DelegateSelectors = new[]
{
"string",
},
Region = "string",
},
EqualJitterBackoffStrategy = new Harness.Platform.Inputs.AwsConnectorEqualJitterBackoffStrategyArgs
{
BaseDelay = 0,
MaxBackoffTime = 0,
RetryCount = 0,
},
Manual = new Harness.Platform.Inputs.AwsConnectorManualArgs
{
SecretKeyRef = "string",
AccessKey = "string",
AccessKeyRef = "string",
DelegateSelectors = new[]
{
"string",
},
Region = "string",
},
Name = "string",
OidcAuthentication = new Harness.Platform.Inputs.AwsConnectorOidcAuthenticationArgs
{
DelegateSelectors = new[]
{
"string",
},
IamRoleArn = "string",
Region = "string",
},
OrgId = "string",
ProjectId = "string",
Tags = new[]
{
"string",
},
});
example, err := platform.NewAwsConnector(ctx, "awsConnectorResource", &platform.AwsConnectorArgs{
Identifier: pulumi.String("string"),
FixedDelayBackoffStrategy: &platform.AwsConnectorFixedDelayBackoffStrategyArgs{
FixedBackoff: pulumi.Int(0),
RetryCount: pulumi.Int(0),
},
Irsa: &platform.AwsConnectorIrsaArgs{
DelegateSelectors: pulumi.StringArray{
pulumi.String("string"),
},
Region: pulumi.String("string"),
},
CrossAccountAccess: &platform.AwsConnectorCrossAccountAccessArgs{
RoleArn: pulumi.String("string"),
ExternalId: pulumi.String("string"),
},
ForceDelete: pulumi.Bool(false),
FullJitterBackoffStrategy: &platform.AwsConnectorFullJitterBackoffStrategyArgs{
BaseDelay: pulumi.Int(0),
MaxBackoffTime: pulumi.Int(0),
RetryCount: pulumi.Int(0),
},
Description: pulumi.String("string"),
InheritFromDelegate: &platform.AwsConnectorInheritFromDelegateArgs{
DelegateSelectors: pulumi.StringArray{
pulumi.String("string"),
},
Region: pulumi.String("string"),
},
EqualJitterBackoffStrategy: &platform.AwsConnectorEqualJitterBackoffStrategyArgs{
BaseDelay: pulumi.Int(0),
MaxBackoffTime: pulumi.Int(0),
RetryCount: pulumi.Int(0),
},
Manual: &platform.AwsConnectorManualArgs{
SecretKeyRef: pulumi.String("string"),
AccessKey: pulumi.String("string"),
AccessKeyRef: pulumi.String("string"),
DelegateSelectors: pulumi.StringArray{
pulumi.String("string"),
},
Region: pulumi.String("string"),
},
Name: pulumi.String("string"),
OidcAuthentication: &platform.AwsConnectorOidcAuthenticationArgs{
DelegateSelectors: pulumi.StringArray{
pulumi.String("string"),
},
IamRoleArn: pulumi.String("string"),
Region: pulumi.String("string"),
},
OrgId: pulumi.String("string"),
ProjectId: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
})
var awsConnectorResource = new AwsConnector("awsConnectorResource", AwsConnectorArgs.builder()
.identifier("string")
.fixedDelayBackoffStrategy(AwsConnectorFixedDelayBackoffStrategyArgs.builder()
.fixedBackoff(0)
.retryCount(0)
.build())
.irsa(AwsConnectorIrsaArgs.builder()
.delegateSelectors("string")
.region("string")
.build())
.crossAccountAccess(AwsConnectorCrossAccountAccessArgs.builder()
.roleArn("string")
.externalId("string")
.build())
.forceDelete(false)
.fullJitterBackoffStrategy(AwsConnectorFullJitterBackoffStrategyArgs.builder()
.baseDelay(0)
.maxBackoffTime(0)
.retryCount(0)
.build())
.description("string")
.inheritFromDelegate(AwsConnectorInheritFromDelegateArgs.builder()
.delegateSelectors("string")
.region("string")
.build())
.equalJitterBackoffStrategy(AwsConnectorEqualJitterBackoffStrategyArgs.builder()
.baseDelay(0)
.maxBackoffTime(0)
.retryCount(0)
.build())
.manual(AwsConnectorManualArgs.builder()
.secretKeyRef("string")
.accessKey("string")
.accessKeyRef("string")
.delegateSelectors("string")
.region("string")
.build())
.name("string")
.oidcAuthentication(AwsConnectorOidcAuthenticationArgs.builder()
.delegateSelectors("string")
.iamRoleArn("string")
.region("string")
.build())
.orgId("string")
.projectId("string")
.tags("string")
.build());
aws_connector_resource = harness.platform.AwsConnector("awsConnectorResource",
identifier="string",
fixed_delay_backoff_strategy=harness.platform.AwsConnectorFixedDelayBackoffStrategyArgs(
fixed_backoff=0,
retry_count=0,
),
irsa=harness.platform.AwsConnectorIrsaArgs(
delegate_selectors=["string"],
region="string",
),
cross_account_access=harness.platform.AwsConnectorCrossAccountAccessArgs(
role_arn="string",
external_id="string",
),
force_delete=False,
full_jitter_backoff_strategy=harness.platform.AwsConnectorFullJitterBackoffStrategyArgs(
base_delay=0,
max_backoff_time=0,
retry_count=0,
),
description="string",
inherit_from_delegate=harness.platform.AwsConnectorInheritFromDelegateArgs(
delegate_selectors=["string"],
region="string",
),
equal_jitter_backoff_strategy=harness.platform.AwsConnectorEqualJitterBackoffStrategyArgs(
base_delay=0,
max_backoff_time=0,
retry_count=0,
),
manual=harness.platform.AwsConnectorManualArgs(
secret_key_ref="string",
access_key="string",
access_key_ref="string",
delegate_selectors=["string"],
region="string",
),
name="string",
oidc_authentication=harness.platform.AwsConnectorOidcAuthenticationArgs(
delegate_selectors=["string"],
iam_role_arn="string",
region="string",
),
org_id="string",
project_id="string",
tags=["string"])
const awsConnectorResource = new harness.platform.AwsConnector("awsConnectorResource", {
identifier: "string",
fixedDelayBackoffStrategy: {
fixedBackoff: 0,
retryCount: 0,
},
irsa: {
delegateSelectors: ["string"],
region: "string",
},
crossAccountAccess: {
roleArn: "string",
externalId: "string",
},
forceDelete: false,
fullJitterBackoffStrategy: {
baseDelay: 0,
maxBackoffTime: 0,
retryCount: 0,
},
description: "string",
inheritFromDelegate: {
delegateSelectors: ["string"],
region: "string",
},
equalJitterBackoffStrategy: {
baseDelay: 0,
maxBackoffTime: 0,
retryCount: 0,
},
manual: {
secretKeyRef: "string",
accessKey: "string",
accessKeyRef: "string",
delegateSelectors: ["string"],
region: "string",
},
name: "string",
oidcAuthentication: {
delegateSelectors: ["string"],
iamRoleArn: "string",
region: "string",
},
orgId: "string",
projectId: "string",
tags: ["string"],
});
type: harness:platform:AwsConnector
properties:
crossAccountAccess:
externalId: string
roleArn: string
description: string
equalJitterBackoffStrategy:
baseDelay: 0
maxBackoffTime: 0
retryCount: 0
fixedDelayBackoffStrategy:
fixedBackoff: 0
retryCount: 0
forceDelete: false
fullJitterBackoffStrategy:
baseDelay: 0
maxBackoffTime: 0
retryCount: 0
identifier: string
inheritFromDelegate:
delegateSelectors:
- string
region: string
irsa:
delegateSelectors:
- string
region: string
manual:
accessKey: string
accessKeyRef: string
delegateSelectors:
- string
region: string
secretKeyRef: string
name: string
oidcAuthentication:
delegateSelectors:
- string
iamRoleArn: string
region: string
orgId: string
projectId: string
tags:
- string
AwsConnector 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 AwsConnector resource accepts the following input properties:
- Identifier string
- Unique identifier of the resource.
- Cross
Account AwsAccess Connector Cross Account Access - Select this option if you want to use one AWS account for the connection, but you want to deploy or build in a different AWS account. In this scenario, the AWS account used for AWS access in Credentials will assume the IAM role you specify in Cross-account role ARN setting. This option uses the AWS Security Token Service (STS) feature.
- Description string
- Description of the resource.
- Equal
Jitter AwsBackoff Strategy Connector Equal Jitter Backoff Strategy - Equal Jitter BackOff Strategy.
- Fixed
Delay AwsBackoff Strategy Connector Fixed Delay Backoff Strategy - Fixed Delay BackOff Strategy.
- Force
Delete bool - Enable this flag for force deletion of connector
- Full
Jitter AwsBackoff Strategy Connector Full Jitter Backoff Strategy - Full Jitter BackOff Strategy.
- Inherit
From AwsDelegate Connector Inherit From Delegate - Inherit credentials from the delegate.
- Irsa
Aws
Connector Irsa - Use IAM role for service accounts.
- Manual
Aws
Connector Manual - Use IAM role for service accounts.
- Name string
- Name of the resource.
- Oidc
Authentication AwsConnector Oidc Authentication - Authentication using harness oidc.
- 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.
- Cross
Account AwsAccess Connector Cross Account Access Args - Select this option if you want to use one AWS account for the connection, but you want to deploy or build in a different AWS account. In this scenario, the AWS account used for AWS access in Credentials will assume the IAM role you specify in Cross-account role ARN setting. This option uses the AWS Security Token Service (STS) feature.
- Description string
- Description of the resource.
- Equal
Jitter AwsBackoff Strategy Connector Equal Jitter Backoff Strategy Args - Equal Jitter BackOff Strategy.
- Fixed
Delay AwsBackoff Strategy Connector Fixed Delay Backoff Strategy Args - Fixed Delay BackOff Strategy.
- Force
Delete bool - Enable this flag for force deletion of connector
- Full
Jitter AwsBackoff Strategy Connector Full Jitter Backoff Strategy Args - Full Jitter BackOff Strategy.
- Inherit
From AwsDelegate Connector Inherit From Delegate Args - Inherit credentials from the delegate.
- Irsa
Aws
Connector Irsa Args - Use IAM role for service accounts.
- Manual
Aws
Connector Manual Args - Use IAM role for service accounts.
- Name string
- Name of the resource.
- Oidc
Authentication AwsConnector Oidc Authentication Args - Authentication using harness oidc.
- 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.
- cross
Account AwsAccess Connector Cross Account Access - Select this option if you want to use one AWS account for the connection, but you want to deploy or build in a different AWS account. In this scenario, the AWS account used for AWS access in Credentials will assume the IAM role you specify in Cross-account role ARN setting. This option uses the AWS Security Token Service (STS) feature.
- description String
- Description of the resource.
- equal
Jitter AwsBackoff Strategy Connector Equal Jitter Backoff Strategy - Equal Jitter BackOff Strategy.
- fixed
Delay AwsBackoff Strategy Connector Fixed Delay Backoff Strategy - Fixed Delay BackOff Strategy.
- force
Delete Boolean - Enable this flag for force deletion of connector
- full
Jitter AwsBackoff Strategy Connector Full Jitter Backoff Strategy - Full Jitter BackOff Strategy.
- inherit
From AwsDelegate Connector Inherit From Delegate - Inherit credentials from the delegate.
- irsa
Aws
Connector Irsa - Use IAM role for service accounts.
- manual
Aws
Connector Manual - Use IAM role for service accounts.
- name String
- Name of the resource.
- oidc
Authentication AwsConnector Oidc Authentication - Authentication using harness oidc.
- 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.
- cross
Account AwsAccess Connector Cross Account Access - Select this option if you want to use one AWS account for the connection, but you want to deploy or build in a different AWS account. In this scenario, the AWS account used for AWS access in Credentials will assume the IAM role you specify in Cross-account role ARN setting. This option uses the AWS Security Token Service (STS) feature.
- description string
- Description of the resource.
- equal
Jitter AwsBackoff Strategy Connector Equal Jitter Backoff Strategy - Equal Jitter BackOff Strategy.
- fixed
Delay AwsBackoff Strategy Connector Fixed Delay Backoff Strategy - Fixed Delay BackOff Strategy.
- force
Delete boolean - Enable this flag for force deletion of connector
- full
Jitter AwsBackoff Strategy Connector Full Jitter Backoff Strategy - Full Jitter BackOff Strategy.
- inherit
From AwsDelegate Connector Inherit From Delegate - Inherit credentials from the delegate.
- irsa
Aws
Connector Irsa - Use IAM role for service accounts.
- manual
Aws
Connector Manual - Use IAM role for service accounts.
- name string
- Name of the resource.
- oidc
Authentication AwsConnector Oidc Authentication - Authentication using harness oidc.
- 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.
- cross_
account_ Awsaccess Connector Cross Account Access Args - Select this option if you want to use one AWS account for the connection, but you want to deploy or build in a different AWS account. In this scenario, the AWS account used for AWS access in Credentials will assume the IAM role you specify in Cross-account role ARN setting. This option uses the AWS Security Token Service (STS) feature.
- description str
- Description of the resource.
- equal_
jitter_ Awsbackoff_ strategy Connector Equal Jitter Backoff Strategy Args - Equal Jitter BackOff Strategy.
- fixed_
delay_ Awsbackoff_ strategy Connector Fixed Delay Backoff Strategy Args - Fixed Delay BackOff Strategy.
- force_
delete bool - Enable this flag for force deletion of connector
- full_
jitter_ Awsbackoff_ strategy Connector Full Jitter Backoff Strategy Args - Full Jitter BackOff Strategy.
- inherit_
from_ Awsdelegate Connector Inherit From Delegate Args - Inherit credentials from the delegate.
- irsa
Aws
Connector Irsa Args - Use IAM role for service accounts.
- manual
Aws
Connector Manual Args - Use IAM role for service accounts.
- name str
- Name of the resource.
- oidc_
authentication AwsConnector Oidc Authentication Args - Authentication using harness oidc.
- 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.
- cross
Account Property MapAccess - Select this option if you want to use one AWS account for the connection, but you want to deploy or build in a different AWS account. In this scenario, the AWS account used for AWS access in Credentials will assume the IAM role you specify in Cross-account role ARN setting. This option uses the AWS Security Token Service (STS) feature.
- description String
- Description of the resource.
- equal
Jitter Property MapBackoff Strategy - Equal Jitter BackOff Strategy.
- fixed
Delay Property MapBackoff Strategy - Fixed Delay BackOff Strategy.
- force
Delete Boolean - Enable this flag for force deletion of connector
- full
Jitter Property MapBackoff Strategy - Full Jitter BackOff Strategy.
- inherit
From Property MapDelegate - Inherit credentials from the delegate.
- irsa Property Map
- Use IAM role for service accounts.
- manual Property Map
- Use IAM role for service accounts.
- name String
- Name of the resource.
- oidc
Authentication Property Map - Authentication using harness oidc.
- 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 AwsConnector 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 AwsConnector Resource
Get an existing AwsConnector 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?: AwsConnectorState, opts?: CustomResourceOptions): AwsConnector
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cross_account_access: Optional[AwsConnectorCrossAccountAccessArgs] = None,
description: Optional[str] = None,
equal_jitter_backoff_strategy: Optional[AwsConnectorEqualJitterBackoffStrategyArgs] = None,
fixed_delay_backoff_strategy: Optional[AwsConnectorFixedDelayBackoffStrategyArgs] = None,
force_delete: Optional[bool] = None,
full_jitter_backoff_strategy: Optional[AwsConnectorFullJitterBackoffStrategyArgs] = None,
identifier: Optional[str] = None,
inherit_from_delegate: Optional[AwsConnectorInheritFromDelegateArgs] = None,
irsa: Optional[AwsConnectorIrsaArgs] = None,
manual: Optional[AwsConnectorManualArgs] = None,
name: Optional[str] = None,
oidc_authentication: Optional[AwsConnectorOidcAuthenticationArgs] = None,
org_id: Optional[str] = None,
project_id: Optional[str] = None,
tags: Optional[Sequence[str]] = None) -> AwsConnector
func GetAwsConnector(ctx *Context, name string, id IDInput, state *AwsConnectorState, opts ...ResourceOption) (*AwsConnector, error)
public static AwsConnector Get(string name, Input<string> id, AwsConnectorState? state, CustomResourceOptions? opts = null)
public static AwsConnector get(String name, Output<String> id, AwsConnectorState 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.
- Cross
Account AwsAccess Connector Cross Account Access - Select this option if you want to use one AWS account for the connection, but you want to deploy or build in a different AWS account. In this scenario, the AWS account used for AWS access in Credentials will assume the IAM role you specify in Cross-account role ARN setting. This option uses the AWS Security Token Service (STS) feature.
- Description string
- Description of the resource.
- Equal
Jitter AwsBackoff Strategy Connector Equal Jitter Backoff Strategy - Equal Jitter BackOff Strategy.
- Fixed
Delay AwsBackoff Strategy Connector Fixed Delay Backoff Strategy - Fixed Delay BackOff Strategy.
- Force
Delete bool - Enable this flag for force deletion of connector
- Full
Jitter AwsBackoff Strategy Connector Full Jitter Backoff Strategy - Full Jitter BackOff Strategy.
- Identifier string
- Unique identifier of the resource.
- Inherit
From AwsDelegate Connector Inherit From Delegate - Inherit credentials from the delegate.
- Irsa
Aws
Connector Irsa - Use IAM role for service accounts.
- Manual
Aws
Connector Manual - Use IAM role for service accounts.
- Name string
- Name of the resource.
- Oidc
Authentication AwsConnector Oidc Authentication - Authentication using harness oidc.
- Org
Id string - Unique identifier of the organization.
- Project
Id string - Unique identifier of the project.
- List<string>
- Tags to associate with the resource.
- Cross
Account AwsAccess Connector Cross Account Access Args - Select this option if you want to use one AWS account for the connection, but you want to deploy or build in a different AWS account. In this scenario, the AWS account used for AWS access in Credentials will assume the IAM role you specify in Cross-account role ARN setting. This option uses the AWS Security Token Service (STS) feature.
- Description string
- Description of the resource.
- Equal
Jitter AwsBackoff Strategy Connector Equal Jitter Backoff Strategy Args - Equal Jitter BackOff Strategy.
- Fixed
Delay AwsBackoff Strategy Connector Fixed Delay Backoff Strategy Args - Fixed Delay BackOff Strategy.
- Force
Delete bool - Enable this flag for force deletion of connector
- Full
Jitter AwsBackoff Strategy Connector Full Jitter Backoff Strategy Args - Full Jitter BackOff Strategy.
- Identifier string
- Unique identifier of the resource.
- Inherit
From AwsDelegate Connector Inherit From Delegate Args - Inherit credentials from the delegate.
- Irsa
Aws
Connector Irsa Args - Use IAM role for service accounts.
- Manual
Aws
Connector Manual Args - Use IAM role for service accounts.
- Name string
- Name of the resource.
- Oidc
Authentication AwsConnector Oidc Authentication Args - Authentication using harness oidc.
- Org
Id string - Unique identifier of the organization.
- Project
Id string - Unique identifier of the project.
- []string
- Tags to associate with the resource.
- cross
Account AwsAccess Connector Cross Account Access - Select this option if you want to use one AWS account for the connection, but you want to deploy or build in a different AWS account. In this scenario, the AWS account used for AWS access in Credentials will assume the IAM role you specify in Cross-account role ARN setting. This option uses the AWS Security Token Service (STS) feature.
- description String
- Description of the resource.
- equal
Jitter AwsBackoff Strategy Connector Equal Jitter Backoff Strategy - Equal Jitter BackOff Strategy.
- fixed
Delay AwsBackoff Strategy Connector Fixed Delay Backoff Strategy - Fixed Delay BackOff Strategy.
- force
Delete Boolean - Enable this flag for force deletion of connector
- full
Jitter AwsBackoff Strategy Connector Full Jitter Backoff Strategy - Full Jitter BackOff Strategy.
- identifier String
- Unique identifier of the resource.
- inherit
From AwsDelegate Connector Inherit From Delegate - Inherit credentials from the delegate.
- irsa
Aws
Connector Irsa - Use IAM role for service accounts.
- manual
Aws
Connector Manual - Use IAM role for service accounts.
- name String
- Name of the resource.
- oidc
Authentication AwsConnector Oidc Authentication - Authentication using harness oidc.
- org
Id String - Unique identifier of the organization.
- project
Id String - Unique identifier of the project.
- List<String>
- Tags to associate with the resource.
- cross
Account AwsAccess Connector Cross Account Access - Select this option if you want to use one AWS account for the connection, but you want to deploy or build in a different AWS account. In this scenario, the AWS account used for AWS access in Credentials will assume the IAM role you specify in Cross-account role ARN setting. This option uses the AWS Security Token Service (STS) feature.
- description string
- Description of the resource.
- equal
Jitter AwsBackoff Strategy Connector Equal Jitter Backoff Strategy - Equal Jitter BackOff Strategy.
- fixed
Delay AwsBackoff Strategy Connector Fixed Delay Backoff Strategy - Fixed Delay BackOff Strategy.
- force
Delete boolean - Enable this flag for force deletion of connector
- full
Jitter AwsBackoff Strategy Connector Full Jitter Backoff Strategy - Full Jitter BackOff Strategy.
- identifier string
- Unique identifier of the resource.
- inherit
From AwsDelegate Connector Inherit From Delegate - Inherit credentials from the delegate.
- irsa
Aws
Connector Irsa - Use IAM role for service accounts.
- manual
Aws
Connector Manual - Use IAM role for service accounts.
- name string
- Name of the resource.
- oidc
Authentication AwsConnector Oidc Authentication - Authentication using harness oidc.
- org
Id string - Unique identifier of the organization.
- project
Id string - Unique identifier of the project.
- string[]
- Tags to associate with the resource.
- cross_
account_ Awsaccess Connector Cross Account Access Args - Select this option if you want to use one AWS account for the connection, but you want to deploy or build in a different AWS account. In this scenario, the AWS account used for AWS access in Credentials will assume the IAM role you specify in Cross-account role ARN setting. This option uses the AWS Security Token Service (STS) feature.
- description str
- Description of the resource.
- equal_
jitter_ Awsbackoff_ strategy Connector Equal Jitter Backoff Strategy Args - Equal Jitter BackOff Strategy.
- fixed_
delay_ Awsbackoff_ strategy Connector Fixed Delay Backoff Strategy Args - Fixed Delay BackOff Strategy.
- force_
delete bool - Enable this flag for force deletion of connector
- full_
jitter_ Awsbackoff_ strategy Connector Full Jitter Backoff Strategy Args - Full Jitter BackOff Strategy.
- identifier str
- Unique identifier of the resource.
- inherit_
from_ Awsdelegate Connector Inherit From Delegate Args - Inherit credentials from the delegate.
- irsa
Aws
Connector Irsa Args - Use IAM role for service accounts.
- manual
Aws
Connector Manual Args - Use IAM role for service accounts.
- name str
- Name of the resource.
- oidc_
authentication AwsConnector Oidc Authentication Args - Authentication using harness oidc.
- org_
id str - Unique identifier of the organization.
- project_
id str - Unique identifier of the project.
- Sequence[str]
- Tags to associate with the resource.
- cross
Account Property MapAccess - Select this option if you want to use one AWS account for the connection, but you want to deploy or build in a different AWS account. In this scenario, the AWS account used for AWS access in Credentials will assume the IAM role you specify in Cross-account role ARN setting. This option uses the AWS Security Token Service (STS) feature.
- description String
- Description of the resource.
- equal
Jitter Property MapBackoff Strategy - Equal Jitter BackOff Strategy.
- fixed
Delay Property MapBackoff Strategy - Fixed Delay BackOff Strategy.
- force
Delete Boolean - Enable this flag for force deletion of connector
- full
Jitter Property MapBackoff Strategy - Full Jitter BackOff Strategy.
- identifier String
- Unique identifier of the resource.
- inherit
From Property MapDelegate - Inherit credentials from the delegate.
- irsa Property Map
- Use IAM role for service accounts.
- manual Property Map
- Use IAM role for service accounts.
- name String
- Name of the resource.
- oidc
Authentication Property Map - Authentication using harness oidc.
- org
Id String - Unique identifier of the organization.
- project
Id String - Unique identifier of the project.
- List<String>
- Tags to associate with the resource.
Supporting Types
AwsConnectorCrossAccountAccess, AwsConnectorCrossAccountAccessArgs
- Role
Arn string - The Amazon Resource Name (ARN) of the role that you want to assume. This is an IAM role in the target AWS account.
- External
Id string - If the administrator of the account to which the role belongs provided you with an external ID, then enter that value.
- Role
Arn string - The Amazon Resource Name (ARN) of the role that you want to assume. This is an IAM role in the target AWS account.
- External
Id string - If the administrator of the account to which the role belongs provided you with an external ID, then enter that value.
- role
Arn String - The Amazon Resource Name (ARN) of the role that you want to assume. This is an IAM role in the target AWS account.
- external
Id String - If the administrator of the account to which the role belongs provided you with an external ID, then enter that value.
- role
Arn string - The Amazon Resource Name (ARN) of the role that you want to assume. This is an IAM role in the target AWS account.
- external
Id string - If the administrator of the account to which the role belongs provided you with an external ID, then enter that value.
- role_
arn str - The Amazon Resource Name (ARN) of the role that you want to assume. This is an IAM role in the target AWS account.
- external_
id str - If the administrator of the account to which the role belongs provided you with an external ID, then enter that value.
- role
Arn String - The Amazon Resource Name (ARN) of the role that you want to assume. This is an IAM role in the target AWS account.
- external
Id String - If the administrator of the account to which the role belongs provided you with an external ID, then enter that value.
AwsConnectorEqualJitterBackoffStrategy, AwsConnectorEqualJitterBackoffStrategyArgs
- Base
Delay int - Base delay.
- Max
Backoff intTime - Max BackOff Time.
- Retry
Count int - Retry Count.
- Base
Delay int - Base delay.
- Max
Backoff intTime - Max BackOff Time.
- Retry
Count int - Retry Count.
- base
Delay Integer - Base delay.
- max
Backoff IntegerTime - Max BackOff Time.
- retry
Count Integer - Retry Count.
- base
Delay number - Base delay.
- max
Backoff numberTime - Max BackOff Time.
- retry
Count number - Retry Count.
- base_
delay int - Base delay.
- max_
backoff_ inttime - Max BackOff Time.
- retry_
count int - Retry Count.
- base
Delay Number - Base delay.
- max
Backoff NumberTime - Max BackOff Time.
- retry
Count Number - Retry Count.
AwsConnectorFixedDelayBackoffStrategy, AwsConnectorFixedDelayBackoffStrategyArgs
- Fixed
Backoff int - Fixed Backoff.
- Retry
Count int - Retry Count.
- Fixed
Backoff int - Fixed Backoff.
- Retry
Count int - Retry Count.
- fixed
Backoff Integer - Fixed Backoff.
- retry
Count Integer - Retry Count.
- fixed
Backoff number - Fixed Backoff.
- retry
Count number - Retry Count.
- fixed_
backoff int - Fixed Backoff.
- retry_
count int - Retry Count.
- fixed
Backoff Number - Fixed Backoff.
- retry
Count Number - Retry Count.
AwsConnectorFullJitterBackoffStrategy, AwsConnectorFullJitterBackoffStrategyArgs
- Base
Delay int - Base delay.
- Max
Backoff intTime - Max BackOff Time.
- Retry
Count int - Retry Count.
- Base
Delay int - Base delay.
- Max
Backoff intTime - Max BackOff Time.
- Retry
Count int - Retry Count.
- base
Delay Integer - Base delay.
- max
Backoff IntegerTime - Max BackOff Time.
- retry
Count Integer - Retry Count.
- base
Delay number - Base delay.
- max
Backoff numberTime - Max BackOff Time.
- retry
Count number - Retry Count.
- base_
delay int - Base delay.
- max_
backoff_ inttime - Max BackOff Time.
- retry_
count int - Retry Count.
- base
Delay Number - Base delay.
- max
Backoff NumberTime - Max BackOff Time.
- retry
Count Number - Retry Count.
AwsConnectorInheritFromDelegate, AwsConnectorInheritFromDelegateArgs
- Delegate
Selectors List<string> - The delegates to inherit the credentials from.
- Region string
- Test Region to perform Connection test of AWS Connector.
- Delegate
Selectors []string - The delegates to inherit the credentials from.
- Region string
- Test Region to perform Connection test of AWS Connector.
- delegate
Selectors List<String> - The delegates to inherit the credentials from.
- region String
- Test Region to perform Connection test of AWS Connector.
- delegate
Selectors string[] - The delegates to inherit the credentials from.
- region string
- Test Region to perform Connection test of AWS Connector.
- delegate_
selectors Sequence[str] - The delegates to inherit the credentials from.
- region str
- Test Region to perform Connection test of AWS Connector.
- delegate
Selectors List<String> - The delegates to inherit the credentials from.
- region String
- Test Region to perform Connection test of AWS Connector.
AwsConnectorIrsa, AwsConnectorIrsaArgs
- Delegate
Selectors List<string> - The delegates to inherit the credentials from.
- Region string
- Test Region to perform Connection test of AWS Connector.
- Delegate
Selectors []string - The delegates to inherit the credentials from.
- Region string
- Test Region to perform Connection test of AWS Connector.
- delegate
Selectors List<String> - The delegates to inherit the credentials from.
- region String
- Test Region to perform Connection test of AWS Connector.
- delegate
Selectors string[] - The delegates to inherit the credentials from.
- region string
- Test Region to perform Connection test of AWS Connector.
- delegate_
selectors Sequence[str] - The delegates to inherit the credentials from.
- region str
- Test Region to perform Connection test of AWS Connector.
- delegate
Selectors List<String> - The delegates to inherit the credentials from.
- region String
- Test Region to perform Connection test of AWS Connector.
AwsConnectorManual, AwsConnectorManualArgs
- Secret
Key stringRef - Reference to the Harness secret containing the aws secret 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}.
- Access
Key string - AWS access key.
- Access
Key stringRef - Reference to the Harness secret containing the aws access 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}.
- Delegate
Selectors List<string> - Connect only use delegates with these tags.
- Region string
- Test Region to perform Connection test of AWS Connector.
- Secret
Key stringRef - Reference to the Harness secret containing the aws secret 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}.
- Access
Key string - AWS access key.
- Access
Key stringRef - Reference to the Harness secret containing the aws access 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}.
- Delegate
Selectors []string - Connect only use delegates with these tags.
- Region string
- Test Region to perform Connection test of AWS Connector.
- secret
Key StringRef - Reference to the Harness secret containing the aws secret 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}.
- access
Key String - AWS access key.
- access
Key StringRef - Reference to the Harness secret containing the aws access 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}.
- delegate
Selectors List<String> - Connect only use delegates with these tags.
- region String
- Test Region to perform Connection test of AWS Connector.
- secret
Key stringRef - Reference to the Harness secret containing the aws secret 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}.
- access
Key string - AWS access key.
- access
Key stringRef - Reference to the Harness secret containing the aws access 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}.
- delegate
Selectors string[] - Connect only use delegates with these tags.
- region string
- Test Region to perform Connection test of AWS Connector.
- secret_
key_ strref - Reference to the Harness secret containing the aws secret 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}.
- access_
key str - AWS access key.
- access_
key_ strref - Reference to the Harness secret containing the aws access 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}.
- delegate_
selectors Sequence[str] - Connect only use delegates with these tags.
- region str
- Test Region to perform Connection test of AWS Connector.
- secret
Key StringRef - Reference to the Harness secret containing the aws secret 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}.
- access
Key String - AWS access key.
- access
Key StringRef - Reference to the Harness secret containing the aws access 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}.
- delegate
Selectors List<String> - Connect only use delegates with these tags.
- region String
- Test Region to perform Connection test of AWS Connector.
AwsConnectorOidcAuthentication, AwsConnectorOidcAuthenticationArgs
- Delegate
Selectors List<string> - The delegates to inherit the credentials from.
- Iam
Role stringArn - The IAM Role to assume the credentials from.
- Region string
- Test Region to perform Connection test of AWS Connector. 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}.
- Delegate
Selectors []string - The delegates to inherit the credentials from.
- Iam
Role stringArn - The IAM Role to assume the credentials from.
- Region string
- Test Region to perform Connection test of AWS Connector. 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}.
- delegate
Selectors List<String> - The delegates to inherit the credentials from.
- iam
Role StringArn - The IAM Role to assume the credentials from.
- region String
- Test Region to perform Connection test of AWS Connector. 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}.
- delegate
Selectors string[] - The delegates to inherit the credentials from.
- iam
Role stringArn - The IAM Role to assume the credentials from.
- region string
- Test Region to perform Connection test of AWS Connector. 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}.
- delegate_
selectors Sequence[str] - The delegates to inherit the credentials from.
- iam_
role_ strarn - The IAM Role to assume the credentials from.
- region str
- Test Region to perform Connection test of AWS Connector. 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}.
- delegate
Selectors List<String> - The delegates to inherit the credentials from.
- iam
Role StringArn - The IAM Role to assume the credentials from.
- region String
- Test Region to perform Connection test of AWS Connector. 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 aws connector
$ pulumi import harness:platform/awsConnector:AwsConnector example <connector_id>
Import organization level aws connector
$ pulumi import harness:platform/awsConnector:AwsConnector example <organization_id>/<connector_id>
Import project level aws connector
$ pulumi import harness:platform/awsConnector:AwsConnector example <organization_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.