harness.InfrastructureDefinition

Resource for creating am infrastructure definition. This resource uses the config-as-code API’s. When updating the name or path of this resource you should typically also set the create_before_destroy = true lifecycle setting.

Example Usage

using System.Collections.Generic;
using Pulumi;
using Harness = Lbrlabs.PulumiPackage.Harness;

return await Deployment.RunAsync(() => 
{
    // Creating a Kubernetes infrastructure definition
    var devKubernetes = new Harness.Cloudprovider.Kubernetes("devKubernetes", new()
    {
        Authentication = new Harness.Cloudprovider.Inputs.KubernetesAuthenticationArgs
        {
            DelegateSelectors = new[]
            {
                "k8s",
            },
        },
    });

    var example = new Harness.Application("example");

    var devEnvironment = new Harness.Environment("devEnvironment", new()
    {
        AppId = example.Id,
        Type = "NON_PROD",
    });

    var k8s = new Harness.InfrastructureDefinition("k8s", new()
    {
        AppId = example.Id,
        EnvId = devEnvironment.Id,
        CloudProviderType = "KUBERNETES_CLUSTER",
        DeploymentType = "KUBERNETES",
        Kubernetes = new Harness.Inputs.InfrastructureDefinitionKubernetesArgs
        {
            CloudProviderName = devKubernetes.Name,
            Namespace = "dev",
            ReleaseName = service.Name,
        },
    });

});
package main

import (
	"github.com/lbrlabs/pulumi-harness/sdk/go/harness"
	"github.com/lbrlabs/pulumi-harness/sdk/go/harness/cloudprovider"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		devKubernetes, err := cloudprovider.NewKubernetes(ctx, "devKubernetes", &cloudprovider.KubernetesArgs{
			Authentication: &cloudprovider.KubernetesAuthenticationArgs{
				DelegateSelectors: pulumi.StringArray{
					pulumi.String("k8s"),
				},
			},
		})
		if err != nil {
			return err
		}
		example, err := harness.NewApplication(ctx, "example", nil)
		if err != nil {
			return err
		}
		devEnvironment, err := harness.NewEnvironment(ctx, "devEnvironment", &harness.EnvironmentArgs{
			AppId: example.ID(),
			Type:  pulumi.String("NON_PROD"),
		})
		if err != nil {
			return err
		}
		_, err = harness.NewInfrastructureDefinition(ctx, "k8s", &harness.InfrastructureDefinitionArgs{
			AppId:             example.ID(),
			EnvId:             devEnvironment.ID(),
			CloudProviderType: pulumi.String("KUBERNETES_CLUSTER"),
			DeploymentType:    pulumi.String("KUBERNETES"),
			Kubernetes: &InfrastructureDefinitionKubernetesArgs{
				CloudProviderName: devKubernetes.Name,
				Namespace:         pulumi.String("dev"),
				ReleaseName:       pulumi.Any(service.Name),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.harness.cloudprovider.Kubernetes;
import com.pulumi.harness.cloudprovider.KubernetesArgs;
import com.pulumi.harness.cloudprovider.inputs.KubernetesAuthenticationArgs;
import com.pulumi.harness.Application;
import com.pulumi.harness.Environment;
import com.pulumi.harness.EnvironmentArgs;
import com.pulumi.harness.InfrastructureDefinition;
import com.pulumi.harness.InfrastructureDefinitionArgs;
import com.pulumi.harness.inputs.InfrastructureDefinitionKubernetesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var devKubernetes = new Kubernetes("devKubernetes", KubernetesArgs.builder()        
            .authentication(KubernetesAuthenticationArgs.builder()
                .delegateSelectors("k8s")
                .build())
            .build());

        var example = new Application("example");

        var devEnvironment = new Environment("devEnvironment", EnvironmentArgs.builder()        
            .appId(example.id())
            .type("NON_PROD")
            .build());

        var k8s = new InfrastructureDefinition("k8s", InfrastructureDefinitionArgs.builder()        
            .appId(example.id())
            .envId(devEnvironment.id())
            .cloudProviderType("KUBERNETES_CLUSTER")
            .deploymentType("KUBERNETES")
            .kubernetes(InfrastructureDefinitionKubernetesArgs.builder()
                .cloudProviderName(devKubernetes.name())
                .namespace("dev")
                .releaseName(service.name())
                .build())
            .build());

    }
}
import pulumi
import lbrlabs_pulumi_harness as harness

# Creating a Kubernetes infrastructure definition
dev_kubernetes = harness.cloudprovider.Kubernetes("devKubernetes", authentication=harness.cloudprovider.KubernetesAuthenticationArgs(
    delegate_selectors=["k8s"],
))
example = harness.Application("example")
dev_environment = harness.Environment("devEnvironment",
    app_id=example.id,
    type="NON_PROD")
k8s = harness.InfrastructureDefinition("k8s",
    app_id=example.id,
    env_id=dev_environment.id,
    cloud_provider_type="KUBERNETES_CLUSTER",
    deployment_type="KUBERNETES",
    kubernetes=harness.InfrastructureDefinitionKubernetesArgs(
        cloud_provider_name=dev_kubernetes.name,
        namespace="dev",
        release_name=service["name"],
    ))
import * as pulumi from "@pulumi/pulumi";
import * as harness from "@lbrlabs/pulumi-harness";

// Creating a Kubernetes infrastructure definition
const devKubernetes = new harness.cloudprovider.Kubernetes("devKubernetes", {authentication: {
    delegateSelectors: ["k8s"],
}});
const example = new harness.Application("example", {});
const devEnvironment = new harness.Environment("devEnvironment", {
    appId: example.id,
    type: "NON_PROD",
});
const k8s = new harness.InfrastructureDefinition("k8s", {
    appId: example.id,
    envId: devEnvironment.id,
    cloudProviderType: "KUBERNETES_CLUSTER",
    deploymentType: "KUBERNETES",
    kubernetes: {
        cloudProviderName: devKubernetes.name,
        namespace: "dev",
        releaseName: service.name,
    },
});
resources:
  # Creating a Kubernetes infrastructure definition
  devKubernetes:
    type: harness:cloudprovider:Kubernetes
    properties:
      authentication:
        delegateSelectors:
          - k8s
  example:
    type: harness:Application
  devEnvironment:
    type: harness:Environment
    properties:
      appId: ${example.id}
      type: NON_PROD
  k8s:
    type: harness:InfrastructureDefinition
    properties:
      appId: ${example.id}
      envId: ${devEnvironment.id}
      cloudProviderType: KUBERNETES_CLUSTER
      deploymentType: KUBERNETES
      kubernetes:
        cloudProviderName: ${devKubernetes.name}
        namespace: dev
        releaseName: ${service.name}

Create InfrastructureDefinition Resource

new InfrastructureDefinition(name: string, args: InfrastructureDefinitionArgs, opts?: CustomResourceOptions);
@overload
def InfrastructureDefinition(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             app_id: Optional[str] = None,
                             aws_ami: Optional[InfrastructureDefinitionAwsAmiArgs] = None,
                             aws_ecs: Optional[InfrastructureDefinitionAwsEcsArgs] = None,
                             aws_lambda: Optional[InfrastructureDefinitionAwsLambdaArgs] = None,
                             aws_ssh: Optional[InfrastructureDefinitionAwsSshArgs] = None,
                             aws_winrm: Optional[InfrastructureDefinitionAwsWinrmArgs] = None,
                             azure_vmss: Optional[InfrastructureDefinitionAzureVmssArgs] = None,
                             azure_webapp: Optional[InfrastructureDefinitionAzureWebappArgs] = None,
                             cloud_provider_type: Optional[str] = None,
                             datacenter_ssh: Optional[InfrastructureDefinitionDatacenterSshArgs] = None,
                             datacenter_winrm: Optional[InfrastructureDefinitionDatacenterWinrmArgs] = None,
                             deployment_template_uri: Optional[str] = None,
                             deployment_type: Optional[str] = None,
                             env_id: Optional[str] = None,
                             kubernetes: Optional[InfrastructureDefinitionKubernetesArgs] = None,
                             kubernetes_gcp: Optional[InfrastructureDefinitionKubernetesGcpArgs] = None,
                             name: Optional[str] = None,
                             provisioner_name: Optional[str] = None,
                             scoped_services: Optional[Sequence[str]] = None,
                             tanzu: Optional[InfrastructureDefinitionTanzuArgs] = None)
@overload
def InfrastructureDefinition(resource_name: str,
                             args: InfrastructureDefinitionArgs,
                             opts: Optional[ResourceOptions] = None)
func NewInfrastructureDefinition(ctx *Context, name string, args InfrastructureDefinitionArgs, opts ...ResourceOption) (*InfrastructureDefinition, error)
public InfrastructureDefinition(string name, InfrastructureDefinitionArgs args, CustomResourceOptions? opts = null)
public InfrastructureDefinition(String name, InfrastructureDefinitionArgs args)
public InfrastructureDefinition(String name, InfrastructureDefinitionArgs args, CustomResourceOptions options)
type: harness:InfrastructureDefinition
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args InfrastructureDefinitionArgs
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 InfrastructureDefinitionArgs
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 InfrastructureDefinitionArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args InfrastructureDefinitionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args InfrastructureDefinitionArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

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

AppId string

The id of the application the infrastructure definition belongs to.

CloudProviderType string

The type of the cloud provider to connect with. Valid options are AWS, AZURE, CUSTOM, PHYSICALDATACENTER, KUBERNETESCLUSTER, PCF, SPOTINST

DeploymentType string

The type of the deployment to use. Valid options are AMI, AWSCODEDEPLOY, AWSLAMBDA, AZUREVMSS, AZUREWEBAPP, Custom, ECS, HELM, KUBERNETES, PCF, SSH, WINRM

EnvId string

The id of the environment the infrastructure definition belongs to.

AwsAmi Lbrlabs.PulumiPackage.Harness.Inputs.InfrastructureDefinitionAwsAmiArgs

The configuration details for Aws AMI deployments.

AwsEcs Lbrlabs.PulumiPackage.Harness.Inputs.InfrastructureDefinitionAwsEcsArgs

The configuration details for Aws AMI deployments.

AwsLambda Lbrlabs.PulumiPackage.Harness.Inputs.InfrastructureDefinitionAwsLambdaArgs

The configuration details for Aws Lambda deployments.

AwsSsh Lbrlabs.PulumiPackage.Harness.Inputs.InfrastructureDefinitionAwsSshArgs

The configuration details for AWS SSH deployments.

AwsWinrm Lbrlabs.PulumiPackage.Harness.Inputs.InfrastructureDefinitionAwsWinrmArgs

The configuration details for AWS WinRM deployments.

AzureVmss Lbrlabs.PulumiPackage.Harness.Inputs.InfrastructureDefinitionAzureVmssArgs

The configuration details for Azure VMSS deployments.

AzureWebapp Lbrlabs.PulumiPackage.Harness.Inputs.InfrastructureDefinitionAzureWebappArgs

The configuration details for Azure WebApp deployments.

DatacenterSsh Lbrlabs.PulumiPackage.Harness.Inputs.InfrastructureDefinitionDatacenterSshArgs

The configuration details for SSH datacenter deployments.

DatacenterWinrm Lbrlabs.PulumiPackage.Harness.Inputs.InfrastructureDefinitionDatacenterWinrmArgs

The configuration details for WinRM datacenter deployments.

DeploymentTemplateUri string

The URI of the deployment template to use. Only used if deployment_type is CUSTOM.

Kubernetes Lbrlabs.PulumiPackage.Harness.Inputs.InfrastructureDefinitionKubernetesArgs

The configuration details for Kubernetes deployments.

KubernetesGcp Lbrlabs.PulumiPackage.Harness.Inputs.InfrastructureDefinitionKubernetesGcpArgs

The configuration details for Kubernetes on GCP deployments.

Name string

The name of the infrastructure definition

ProvisionerName string

The name of the infrastructure provisioner to use.

ScopedServices List<string>

The list of service names to scope this infrastructure definition to.

Tanzu Lbrlabs.PulumiPackage.Harness.Inputs.InfrastructureDefinitionTanzuArgs

The configuration details for PCF deployments.

AppId string

The id of the application the infrastructure definition belongs to.

CloudProviderType string

The type of the cloud provider to connect with. Valid options are AWS, AZURE, CUSTOM, PHYSICALDATACENTER, KUBERNETESCLUSTER, PCF, SPOTINST

DeploymentType string

The type of the deployment to use. Valid options are AMI, AWSCODEDEPLOY, AWSLAMBDA, AZUREVMSS, AZUREWEBAPP, Custom, ECS, HELM, KUBERNETES, PCF, SSH, WINRM

EnvId string

The id of the environment the infrastructure definition belongs to.

AwsAmi InfrastructureDefinitionAwsAmiArgs

The configuration details for Aws AMI deployments.

AwsEcs InfrastructureDefinitionAwsEcsArgs

The configuration details for Aws AMI deployments.

AwsLambda InfrastructureDefinitionAwsLambdaArgs

The configuration details for Aws Lambda deployments.

AwsSsh InfrastructureDefinitionAwsSshArgs

The configuration details for AWS SSH deployments.

AwsWinrm InfrastructureDefinitionAwsWinrmArgs

The configuration details for AWS WinRM deployments.

AzureVmss InfrastructureDefinitionAzureVmssArgs

The configuration details for Azure VMSS deployments.

AzureWebapp InfrastructureDefinitionAzureWebappArgs

The configuration details for Azure WebApp deployments.

DatacenterSsh InfrastructureDefinitionDatacenterSshArgs

The configuration details for SSH datacenter deployments.

DatacenterWinrm InfrastructureDefinitionDatacenterWinrmArgs

The configuration details for WinRM datacenter deployments.

DeploymentTemplateUri string

The URI of the deployment template to use. Only used if deployment_type is CUSTOM.

Kubernetes InfrastructureDefinitionKubernetesArgs

The configuration details for Kubernetes deployments.

KubernetesGcp InfrastructureDefinitionKubernetesGcpArgs

The configuration details for Kubernetes on GCP deployments.

Name string

The name of the infrastructure definition

ProvisionerName string

The name of the infrastructure provisioner to use.

ScopedServices []string

The list of service names to scope this infrastructure definition to.

Tanzu InfrastructureDefinitionTanzuArgs

The configuration details for PCF deployments.

appId String

The id of the application the infrastructure definition belongs to.

cloudProviderType String

The type of the cloud provider to connect with. Valid options are AWS, AZURE, CUSTOM, PHYSICALDATACENTER, KUBERNETESCLUSTER, PCF, SPOTINST

deploymentType String

The type of the deployment to use. Valid options are AMI, AWSCODEDEPLOY, AWSLAMBDA, AZUREVMSS, AZUREWEBAPP, Custom, ECS, HELM, KUBERNETES, PCF, SSH, WINRM

envId String

The id of the environment the infrastructure definition belongs to.

awsAmi InfrastructureDefinitionAwsAmiArgs

The configuration details for Aws AMI deployments.

awsEcs InfrastructureDefinitionAwsEcsArgs

The configuration details for Aws AMI deployments.

awsLambda InfrastructureDefinitionAwsLambdaArgs

The configuration details for Aws Lambda deployments.

awsSsh InfrastructureDefinitionAwsSshArgs

The configuration details for AWS SSH deployments.

awsWinrm InfrastructureDefinitionAwsWinrmArgs

The configuration details for AWS WinRM deployments.

azureVmss InfrastructureDefinitionAzureVmssArgs

The configuration details for Azure VMSS deployments.

azureWebapp InfrastructureDefinitionAzureWebappArgs

The configuration details for Azure WebApp deployments.

datacenterSsh InfrastructureDefinitionDatacenterSshArgs

The configuration details for SSH datacenter deployments.

datacenterWinrm InfrastructureDefinitionDatacenterWinrmArgs

The configuration details for WinRM datacenter deployments.

deploymentTemplateUri String

The URI of the deployment template to use. Only used if deployment_type is CUSTOM.

kubernetes InfrastructureDefinitionKubernetesArgs

The configuration details for Kubernetes deployments.

kubernetesGcp InfrastructureDefinitionKubernetesGcpArgs

The configuration details for Kubernetes on GCP deployments.

name String

The name of the infrastructure definition

provisionerName String

The name of the infrastructure provisioner to use.

scopedServices List<String>

The list of service names to scope this infrastructure definition to.

tanzu InfrastructureDefinitionTanzuArgs

The configuration details for PCF deployments.

appId string

The id of the application the infrastructure definition belongs to.

cloudProviderType string

The type of the cloud provider to connect with. Valid options are AWS, AZURE, CUSTOM, PHYSICALDATACENTER, KUBERNETESCLUSTER, PCF, SPOTINST

deploymentType string

The type of the deployment to use. Valid options are AMI, AWSCODEDEPLOY, AWSLAMBDA, AZUREVMSS, AZUREWEBAPP, Custom, ECS, HELM, KUBERNETES, PCF, SSH, WINRM

envId string

The id of the environment the infrastructure definition belongs to.

awsAmi InfrastructureDefinitionAwsAmiArgs

The configuration details for Aws AMI deployments.

awsEcs InfrastructureDefinitionAwsEcsArgs

The configuration details for Aws AMI deployments.

awsLambda InfrastructureDefinitionAwsLambdaArgs

The configuration details for Aws Lambda deployments.

awsSsh InfrastructureDefinitionAwsSshArgs

The configuration details for AWS SSH deployments.

awsWinrm InfrastructureDefinitionAwsWinrmArgs

The configuration details for AWS WinRM deployments.

azureVmss InfrastructureDefinitionAzureVmssArgs

The configuration details for Azure VMSS deployments.

azureWebapp InfrastructureDefinitionAzureWebappArgs

The configuration details for Azure WebApp deployments.

datacenterSsh InfrastructureDefinitionDatacenterSshArgs

The configuration details for SSH datacenter deployments.

datacenterWinrm InfrastructureDefinitionDatacenterWinrmArgs

The configuration details for WinRM datacenter deployments.

deploymentTemplateUri string

The URI of the deployment template to use. Only used if deployment_type is CUSTOM.

kubernetes InfrastructureDefinitionKubernetesArgs

The configuration details for Kubernetes deployments.

kubernetesGcp InfrastructureDefinitionKubernetesGcpArgs

The configuration details for Kubernetes on GCP deployments.

name string

The name of the infrastructure definition

provisionerName string

The name of the infrastructure provisioner to use.

scopedServices string[]

The list of service names to scope this infrastructure definition to.

tanzu InfrastructureDefinitionTanzuArgs

The configuration details for PCF deployments.

app_id str

The id of the application the infrastructure definition belongs to.

cloud_provider_type str

The type of the cloud provider to connect with. Valid options are AWS, AZURE, CUSTOM, PHYSICALDATACENTER, KUBERNETESCLUSTER, PCF, SPOTINST

deployment_type str

The type of the deployment to use. Valid options are AMI, AWSCODEDEPLOY, AWSLAMBDA, AZUREVMSS, AZUREWEBAPP, Custom, ECS, HELM, KUBERNETES, PCF, SSH, WINRM

env_id str

The id of the environment the infrastructure definition belongs to.

aws_ami InfrastructureDefinitionAwsAmiArgs

The configuration details for Aws AMI deployments.

aws_ecs InfrastructureDefinitionAwsEcsArgs

The configuration details for Aws AMI deployments.

aws_lambda InfrastructureDefinitionAwsLambdaArgs

The configuration details for Aws Lambda deployments.

aws_ssh InfrastructureDefinitionAwsSshArgs

The configuration details for AWS SSH deployments.

aws_winrm InfrastructureDefinitionAwsWinrmArgs

The configuration details for AWS WinRM deployments.

azure_vmss InfrastructureDefinitionAzureVmssArgs

The configuration details for Azure VMSS deployments.

azure_webapp InfrastructureDefinitionAzureWebappArgs

The configuration details for Azure WebApp deployments.

datacenter_ssh InfrastructureDefinitionDatacenterSshArgs

The configuration details for SSH datacenter deployments.

datacenter_winrm InfrastructureDefinitionDatacenterWinrmArgs

The configuration details for WinRM datacenter deployments.

deployment_template_uri str

The URI of the deployment template to use. Only used if deployment_type is CUSTOM.

kubernetes InfrastructureDefinitionKubernetesArgs

The configuration details for Kubernetes deployments.

kubernetes_gcp InfrastructureDefinitionKubernetesGcpArgs

The configuration details for Kubernetes on GCP deployments.

name str

The name of the infrastructure definition

provisioner_name str

The name of the infrastructure provisioner to use.

scoped_services Sequence[str]

The list of service names to scope this infrastructure definition to.

tanzu InfrastructureDefinitionTanzuArgs

The configuration details for PCF deployments.

appId String

The id of the application the infrastructure definition belongs to.

cloudProviderType String

The type of the cloud provider to connect with. Valid options are AWS, AZURE, CUSTOM, PHYSICALDATACENTER, KUBERNETESCLUSTER, PCF, SPOTINST

deploymentType String

The type of the deployment to use. Valid options are AMI, AWSCODEDEPLOY, AWSLAMBDA, AZUREVMSS, AZUREWEBAPP, Custom, ECS, HELM, KUBERNETES, PCF, SSH, WINRM

envId String

The id of the environment the infrastructure definition belongs to.

awsAmi Property Map

The configuration details for Aws AMI deployments.

awsEcs Property Map

The configuration details for Aws AMI deployments.

awsLambda Property Map

The configuration details for Aws Lambda deployments.

awsSsh Property Map

The configuration details for AWS SSH deployments.

awsWinrm Property Map

The configuration details for AWS WinRM deployments.

azureVmss Property Map

The configuration details for Azure VMSS deployments.

azureWebapp Property Map

The configuration details for Azure WebApp deployments.

datacenterSsh Property Map

The configuration details for SSH datacenter deployments.

datacenterWinrm Property Map

The configuration details for WinRM datacenter deployments.

deploymentTemplateUri String

The URI of the deployment template to use. Only used if deployment_type is CUSTOM.

kubernetes Property Map

The configuration details for Kubernetes deployments.

kubernetesGcp Property Map

The configuration details for Kubernetes on GCP deployments.

name String

The name of the infrastructure definition

provisionerName String

The name of the infrastructure provisioner to use.

scopedServices List<String>

The list of service names to scope this infrastructure definition to.

tanzu Property Map

The configuration details for PCF deployments.

Outputs

All input properties are implicitly available as output properties. Additionally, the InfrastructureDefinition 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 InfrastructureDefinition Resource

Get an existing InfrastructureDefinition 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?: InfrastructureDefinitionState, opts?: CustomResourceOptions): InfrastructureDefinition
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        app_id: Optional[str] = None,
        aws_ami: Optional[InfrastructureDefinitionAwsAmiArgs] = None,
        aws_ecs: Optional[InfrastructureDefinitionAwsEcsArgs] = None,
        aws_lambda: Optional[InfrastructureDefinitionAwsLambdaArgs] = None,
        aws_ssh: Optional[InfrastructureDefinitionAwsSshArgs] = None,
        aws_winrm: Optional[InfrastructureDefinitionAwsWinrmArgs] = None,
        azure_vmss: Optional[InfrastructureDefinitionAzureVmssArgs] = None,
        azure_webapp: Optional[InfrastructureDefinitionAzureWebappArgs] = None,
        cloud_provider_type: Optional[str] = None,
        datacenter_ssh: Optional[InfrastructureDefinitionDatacenterSshArgs] = None,
        datacenter_winrm: Optional[InfrastructureDefinitionDatacenterWinrmArgs] = None,
        deployment_template_uri: Optional[str] = None,
        deployment_type: Optional[str] = None,
        env_id: Optional[str] = None,
        kubernetes: Optional[InfrastructureDefinitionKubernetesArgs] = None,
        kubernetes_gcp: Optional[InfrastructureDefinitionKubernetesGcpArgs] = None,
        name: Optional[str] = None,
        provisioner_name: Optional[str] = None,
        scoped_services: Optional[Sequence[str]] = None,
        tanzu: Optional[InfrastructureDefinitionTanzuArgs] = None) -> InfrastructureDefinition
func GetInfrastructureDefinition(ctx *Context, name string, id IDInput, state *InfrastructureDefinitionState, opts ...ResourceOption) (*InfrastructureDefinition, error)
public static InfrastructureDefinition Get(string name, Input<string> id, InfrastructureDefinitionState? state, CustomResourceOptions? opts = null)
public static InfrastructureDefinition get(String name, Output<String> id, InfrastructureDefinitionState 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.
The following state arguments are supported:
AppId string

The id of the application the infrastructure definition belongs to.

AwsAmi Lbrlabs.PulumiPackage.Harness.Inputs.InfrastructureDefinitionAwsAmiArgs

The configuration details for Aws AMI deployments.

AwsEcs Lbrlabs.PulumiPackage.Harness.Inputs.InfrastructureDefinitionAwsEcsArgs

The configuration details for Aws AMI deployments.

AwsLambda Lbrlabs.PulumiPackage.Harness.Inputs.InfrastructureDefinitionAwsLambdaArgs

The configuration details for Aws Lambda deployments.

AwsSsh Lbrlabs.PulumiPackage.Harness.Inputs.InfrastructureDefinitionAwsSshArgs

The configuration details for AWS SSH deployments.

AwsWinrm Lbrlabs.PulumiPackage.Harness.Inputs.InfrastructureDefinitionAwsWinrmArgs

The configuration details for AWS WinRM deployments.

AzureVmss Lbrlabs.PulumiPackage.Harness.Inputs.InfrastructureDefinitionAzureVmssArgs

The configuration details for Azure VMSS deployments.

AzureWebapp Lbrlabs.PulumiPackage.Harness.Inputs.InfrastructureDefinitionAzureWebappArgs

The configuration details for Azure WebApp deployments.

CloudProviderType string

The type of the cloud provider to connect with. Valid options are AWS, AZURE, CUSTOM, PHYSICALDATACENTER, KUBERNETESCLUSTER, PCF, SPOTINST

DatacenterSsh Lbrlabs.PulumiPackage.Harness.Inputs.InfrastructureDefinitionDatacenterSshArgs

The configuration details for SSH datacenter deployments.

DatacenterWinrm Lbrlabs.PulumiPackage.Harness.Inputs.InfrastructureDefinitionDatacenterWinrmArgs

The configuration details for WinRM datacenter deployments.

DeploymentTemplateUri string

The URI of the deployment template to use. Only used if deployment_type is CUSTOM.

DeploymentType string

The type of the deployment to use. Valid options are AMI, AWSCODEDEPLOY, AWSLAMBDA, AZUREVMSS, AZUREWEBAPP, Custom, ECS, HELM, KUBERNETES, PCF, SSH, WINRM

EnvId string

The id of the environment the infrastructure definition belongs to.

Kubernetes Lbrlabs.PulumiPackage.Harness.Inputs.InfrastructureDefinitionKubernetesArgs

The configuration details for Kubernetes deployments.

KubernetesGcp Lbrlabs.PulumiPackage.Harness.Inputs.InfrastructureDefinitionKubernetesGcpArgs

The configuration details for Kubernetes on GCP deployments.

Name string

The name of the infrastructure definition

ProvisionerName string

The name of the infrastructure provisioner to use.

ScopedServices List<string>

The list of service names to scope this infrastructure definition to.

Tanzu Lbrlabs.PulumiPackage.Harness.Inputs.InfrastructureDefinitionTanzuArgs

The configuration details for PCF deployments.

AppId string

The id of the application the infrastructure definition belongs to.

AwsAmi InfrastructureDefinitionAwsAmiArgs

The configuration details for Aws AMI deployments.

AwsEcs InfrastructureDefinitionAwsEcsArgs

The configuration details for Aws AMI deployments.

AwsLambda InfrastructureDefinitionAwsLambdaArgs

The configuration details for Aws Lambda deployments.

AwsSsh InfrastructureDefinitionAwsSshArgs

The configuration details for AWS SSH deployments.

AwsWinrm InfrastructureDefinitionAwsWinrmArgs

The configuration details for AWS WinRM deployments.

AzureVmss InfrastructureDefinitionAzureVmssArgs

The configuration details for Azure VMSS deployments.

AzureWebapp InfrastructureDefinitionAzureWebappArgs

The configuration details for Azure WebApp deployments.

CloudProviderType string

The type of the cloud provider to connect with. Valid options are AWS, AZURE, CUSTOM, PHYSICALDATACENTER, KUBERNETESCLUSTER, PCF, SPOTINST

DatacenterSsh InfrastructureDefinitionDatacenterSshArgs

The configuration details for SSH datacenter deployments.

DatacenterWinrm InfrastructureDefinitionDatacenterWinrmArgs

The configuration details for WinRM datacenter deployments.

DeploymentTemplateUri string

The URI of the deployment template to use. Only used if deployment_type is CUSTOM.

DeploymentType string

The type of the deployment to use. Valid options are AMI, AWSCODEDEPLOY, AWSLAMBDA, AZUREVMSS, AZUREWEBAPP, Custom, ECS, HELM, KUBERNETES, PCF, SSH, WINRM

EnvId string

The id of the environment the infrastructure definition belongs to.

Kubernetes InfrastructureDefinitionKubernetesArgs

The configuration details for Kubernetes deployments.

KubernetesGcp InfrastructureDefinitionKubernetesGcpArgs

The configuration details for Kubernetes on GCP deployments.

Name string

The name of the infrastructure definition

ProvisionerName string

The name of the infrastructure provisioner to use.

ScopedServices []string

The list of service names to scope this infrastructure definition to.

Tanzu InfrastructureDefinitionTanzuArgs

The configuration details for PCF deployments.

appId String

The id of the application the infrastructure definition belongs to.

awsAmi InfrastructureDefinitionAwsAmiArgs

The configuration details for Aws AMI deployments.

awsEcs InfrastructureDefinitionAwsEcsArgs

The configuration details for Aws AMI deployments.

awsLambda InfrastructureDefinitionAwsLambdaArgs

The configuration details for Aws Lambda deployments.

awsSsh InfrastructureDefinitionAwsSshArgs

The configuration details for AWS SSH deployments.

awsWinrm InfrastructureDefinitionAwsWinrmArgs

The configuration details for AWS WinRM deployments.

azureVmss InfrastructureDefinitionAzureVmssArgs

The configuration details for Azure VMSS deployments.

azureWebapp InfrastructureDefinitionAzureWebappArgs

The configuration details for Azure WebApp deployments.

cloudProviderType String

The type of the cloud provider to connect with. Valid options are AWS, AZURE, CUSTOM, PHYSICALDATACENTER, KUBERNETESCLUSTER, PCF, SPOTINST

datacenterSsh InfrastructureDefinitionDatacenterSshArgs

The configuration details for SSH datacenter deployments.

datacenterWinrm InfrastructureDefinitionDatacenterWinrmArgs

The configuration details for WinRM datacenter deployments.

deploymentTemplateUri String

The URI of the deployment template to use. Only used if deployment_type is CUSTOM.

deploymentType String

The type of the deployment to use. Valid options are AMI, AWSCODEDEPLOY, AWSLAMBDA, AZUREVMSS, AZUREWEBAPP, Custom, ECS, HELM, KUBERNETES, PCF, SSH, WINRM

envId String

The id of the environment the infrastructure definition belongs to.

kubernetes InfrastructureDefinitionKubernetesArgs

The configuration details for Kubernetes deployments.

kubernetesGcp InfrastructureDefinitionKubernetesGcpArgs

The configuration details for Kubernetes on GCP deployments.

name String

The name of the infrastructure definition

provisionerName String

The name of the infrastructure provisioner to use.

scopedServices List<String>

The list of service names to scope this infrastructure definition to.

tanzu InfrastructureDefinitionTanzuArgs

The configuration details for PCF deployments.

appId string

The id of the application the infrastructure definition belongs to.

awsAmi InfrastructureDefinitionAwsAmiArgs

The configuration details for Aws AMI deployments.

awsEcs InfrastructureDefinitionAwsEcsArgs

The configuration details for Aws AMI deployments.

awsLambda InfrastructureDefinitionAwsLambdaArgs

The configuration details for Aws Lambda deployments.

awsSsh InfrastructureDefinitionAwsSshArgs

The configuration details for AWS SSH deployments.

awsWinrm InfrastructureDefinitionAwsWinrmArgs

The configuration details for AWS WinRM deployments.

azureVmss InfrastructureDefinitionAzureVmssArgs

The configuration details for Azure VMSS deployments.

azureWebapp InfrastructureDefinitionAzureWebappArgs

The configuration details for Azure WebApp deployments.

cloudProviderType string

The type of the cloud provider to connect with. Valid options are AWS, AZURE, CUSTOM, PHYSICALDATACENTER, KUBERNETESCLUSTER, PCF, SPOTINST

datacenterSsh InfrastructureDefinitionDatacenterSshArgs

The configuration details for SSH datacenter deployments.

datacenterWinrm InfrastructureDefinitionDatacenterWinrmArgs

The configuration details for WinRM datacenter deployments.

deploymentTemplateUri string

The URI of the deployment template to use. Only used if deployment_type is CUSTOM.

deploymentType string

The type of the deployment to use. Valid options are AMI, AWSCODEDEPLOY, AWSLAMBDA, AZUREVMSS, AZUREWEBAPP, Custom, ECS, HELM, KUBERNETES, PCF, SSH, WINRM

envId string

The id of the environment the infrastructure definition belongs to.

kubernetes InfrastructureDefinitionKubernetesArgs

The configuration details for Kubernetes deployments.

kubernetesGcp InfrastructureDefinitionKubernetesGcpArgs

The configuration details for Kubernetes on GCP deployments.

name string

The name of the infrastructure definition

provisionerName string

The name of the infrastructure provisioner to use.

scopedServices string[]

The list of service names to scope this infrastructure definition to.

tanzu InfrastructureDefinitionTanzuArgs

The configuration details for PCF deployments.

app_id str

The id of the application the infrastructure definition belongs to.

aws_ami InfrastructureDefinitionAwsAmiArgs

The configuration details for Aws AMI deployments.

aws_ecs InfrastructureDefinitionAwsEcsArgs

The configuration details for Aws AMI deployments.

aws_lambda InfrastructureDefinitionAwsLambdaArgs

The configuration details for Aws Lambda deployments.

aws_ssh InfrastructureDefinitionAwsSshArgs

The configuration details for AWS SSH deployments.

aws_winrm InfrastructureDefinitionAwsWinrmArgs

The configuration details for AWS WinRM deployments.

azure_vmss InfrastructureDefinitionAzureVmssArgs

The configuration details for Azure VMSS deployments.

azure_webapp InfrastructureDefinitionAzureWebappArgs

The configuration details for Azure WebApp deployments.

cloud_provider_type str

The type of the cloud provider to connect with. Valid options are AWS, AZURE, CUSTOM, PHYSICALDATACENTER, KUBERNETESCLUSTER, PCF, SPOTINST

datacenter_ssh InfrastructureDefinitionDatacenterSshArgs

The configuration details for SSH datacenter deployments.

datacenter_winrm InfrastructureDefinitionDatacenterWinrmArgs

The configuration details for WinRM datacenter deployments.

deployment_template_uri str

The URI of the deployment template to use. Only used if deployment_type is CUSTOM.

deployment_type str

The type of the deployment to use. Valid options are AMI, AWSCODEDEPLOY, AWSLAMBDA, AZUREVMSS, AZUREWEBAPP, Custom, ECS, HELM, KUBERNETES, PCF, SSH, WINRM

env_id str

The id of the environment the infrastructure definition belongs to.

kubernetes InfrastructureDefinitionKubernetesArgs

The configuration details for Kubernetes deployments.

kubernetes_gcp InfrastructureDefinitionKubernetesGcpArgs

The configuration details for Kubernetes on GCP deployments.

name str

The name of the infrastructure definition

provisioner_name str

The name of the infrastructure provisioner to use.

scoped_services Sequence[str]

The list of service names to scope this infrastructure definition to.

tanzu InfrastructureDefinitionTanzuArgs

The configuration details for PCF deployments.

appId String

The id of the application the infrastructure definition belongs to.

awsAmi Property Map

The configuration details for Aws AMI deployments.

awsEcs Property Map

The configuration details for Aws AMI deployments.

awsLambda Property Map

The configuration details for Aws Lambda deployments.

awsSsh Property Map

The configuration details for AWS SSH deployments.

awsWinrm Property Map

The configuration details for AWS WinRM deployments.

azureVmss Property Map

The configuration details for Azure VMSS deployments.

azureWebapp Property Map

The configuration details for Azure WebApp deployments.

cloudProviderType String

The type of the cloud provider to connect with. Valid options are AWS, AZURE, CUSTOM, PHYSICALDATACENTER, KUBERNETESCLUSTER, PCF, SPOTINST

datacenterSsh Property Map

The configuration details for SSH datacenter deployments.

datacenterWinrm Property Map

The configuration details for WinRM datacenter deployments.

deploymentTemplateUri String

The URI of the deployment template to use. Only used if deployment_type is CUSTOM.

deploymentType String

The type of the deployment to use. Valid options are AMI, AWSCODEDEPLOY, AWSLAMBDA, AZUREVMSS, AZUREWEBAPP, Custom, ECS, HELM, KUBERNETES, PCF, SSH, WINRM

envId String

The id of the environment the infrastructure definition belongs to.

kubernetes Property Map

The configuration details for Kubernetes deployments.

kubernetesGcp Property Map

The configuration details for Kubernetes on GCP deployments.

name String

The name of the infrastructure definition

provisionerName String

The name of the infrastructure provisioner to use.

scopedServices List<String>

The list of service names to scope this infrastructure definition to.

tanzu Property Map

The configuration details for PCF deployments.

Supporting Types

InfrastructureDefinitionAwsAmi

AmiDeploymentType string

The ami deployment type to use. Valid options are AWS_ASG, SPOTINST

CloudProviderName string

The name of the cloud provider to connect with.

Region string

The region to deploy to.

AsgIdentifiesWorkload bool

Flag to indicate whether the autoscaling group identifies the workload.

AutoscalingGroupName string

The name of the autoscaling group.

ClassicLoadbalancers List<string>

The classic load balancers to use.

HostnameConvention string

The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}

SpotinstCloudProviderName string

The name of the SpotInst cloud provider to connect with.

SpotinstConfigJson string

The SpotInst configuration to use.

StageClassicLoadbalancers List<string>

The staging classic load balancers to use.

StageTargetGroupArns List<string>

The staging classic load balancers to use.

TargetGroupArns List<string>

The ARN's of the target groups.

UseTrafficShift bool

Flag to enable traffic shifting.

AmiDeploymentType string

The ami deployment type to use. Valid options are AWS_ASG, SPOTINST

CloudProviderName string

The name of the cloud provider to connect with.

Region string

The region to deploy to.

AsgIdentifiesWorkload bool

Flag to indicate whether the autoscaling group identifies the workload.

AutoscalingGroupName string

The name of the autoscaling group.

ClassicLoadbalancers []string

The classic load balancers to use.

HostnameConvention string

The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}

SpotinstCloudProviderName string

The name of the SpotInst cloud provider to connect with.

SpotinstConfigJson string

The SpotInst configuration to use.

StageClassicLoadbalancers []string

The staging classic load balancers to use.

StageTargetGroupArns []string

The staging classic load balancers to use.

TargetGroupArns []string

The ARN's of the target groups.

UseTrafficShift bool

Flag to enable traffic shifting.

amiDeploymentType String

The ami deployment type to use. Valid options are AWS_ASG, SPOTINST

cloudProviderName String

The name of the cloud provider to connect with.

region String

The region to deploy to.

asgIdentifiesWorkload Boolean

Flag to indicate whether the autoscaling group identifies the workload.

autoscalingGroupName String

The name of the autoscaling group.

classicLoadbalancers List<String>

The classic load balancers to use.

hostnameConvention String

The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}

spotinstCloudProviderName String

The name of the SpotInst cloud provider to connect with.

spotinstConfigJson String

The SpotInst configuration to use.

stageClassicLoadbalancers List<String>

The staging classic load balancers to use.

stageTargetGroupArns List<String>

The staging classic load balancers to use.

targetGroupArns List<String>

The ARN's of the target groups.

useTrafficShift Boolean

Flag to enable traffic shifting.

amiDeploymentType string

The ami deployment type to use. Valid options are AWS_ASG, SPOTINST

cloudProviderName string

The name of the cloud provider to connect with.

region string

The region to deploy to.

asgIdentifiesWorkload boolean

Flag to indicate whether the autoscaling group identifies the workload.

autoscalingGroupName string

The name of the autoscaling group.

classicLoadbalancers string[]

The classic load balancers to use.

hostnameConvention string

The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}

spotinstCloudProviderName string

The name of the SpotInst cloud provider to connect with.

spotinstConfigJson string

The SpotInst configuration to use.

stageClassicLoadbalancers string[]

The staging classic load balancers to use.

stageTargetGroupArns string[]

The staging classic load balancers to use.

targetGroupArns string[]

The ARN's of the target groups.

useTrafficShift boolean

Flag to enable traffic shifting.

ami_deployment_type str

The ami deployment type to use. Valid options are AWS_ASG, SPOTINST

cloud_provider_name str

The name of the cloud provider to connect with.

region str

The region to deploy to.

asg_identifies_workload bool

Flag to indicate whether the autoscaling group identifies the workload.

autoscaling_group_name str

The name of the autoscaling group.

classic_loadbalancers Sequence[str]

The classic load balancers to use.

hostname_convention str

The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}

spotinst_cloud_provider_name str

The name of the SpotInst cloud provider to connect with.

spotinst_config_json str

The SpotInst configuration to use.

stage_classic_loadbalancers Sequence[str]

The staging classic load balancers to use.

stage_target_group_arns Sequence[str]

The staging classic load balancers to use.

target_group_arns Sequence[str]

The ARN's of the target groups.

use_traffic_shift bool

Flag to enable traffic shifting.

amiDeploymentType String

The ami deployment type to use. Valid options are AWS_ASG, SPOTINST

cloudProviderName String

The name of the cloud provider to connect with.

region String

The region to deploy to.

asgIdentifiesWorkload Boolean

Flag to indicate whether the autoscaling group identifies the workload.

autoscalingGroupName String

The name of the autoscaling group.

classicLoadbalancers List<String>

The classic load balancers to use.

hostnameConvention String

The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}

spotinstCloudProviderName String

The name of the SpotInst cloud provider to connect with.

spotinstConfigJson String

The SpotInst configuration to use.

stageClassicLoadbalancers List<String>

The staging classic load balancers to use.

stageTargetGroupArns List<String>

The staging classic load balancers to use.

targetGroupArns List<String>

The ARN's of the target groups.

useTrafficShift Boolean

Flag to enable traffic shifting.

InfrastructureDefinitionAwsEcs

CloudProviderName string

The name of the cloud provider to connect with.

ClusterName string

The name of the ECS cluster to use.

LaunchType string

The type of launch configuration to use. Valid options are FARGATE

Region string

The region to deploy to.

AssignPublicIp bool

Flag to assign a public IP address.

ExecutionRole string

The ARN of the role to use for execution.

SecurityGroupIds List<string>

The security group ids to apply to the ecs service.

SubnetIds List<string>

The subnet ids to apply to the ecs service.

VpcId string

The VPC ids to use when selecting the instances.

CloudProviderName string

The name of the cloud provider to connect with.

ClusterName string

The name of the ECS cluster to use.

LaunchType string

The type of launch configuration to use. Valid options are FARGATE

Region string

The region to deploy to.

AssignPublicIp bool

Flag to assign a public IP address.

ExecutionRole string

The ARN of the role to use for execution.

SecurityGroupIds []string

The security group ids to apply to the ecs service.

SubnetIds []string

The subnet ids to apply to the ecs service.

VpcId string

The VPC ids to use when selecting the instances.

cloudProviderName String

The name of the cloud provider to connect with.

clusterName String

The name of the ECS cluster to use.

launchType String

The type of launch configuration to use. Valid options are FARGATE

region String

The region to deploy to.

assignPublicIp Boolean

Flag to assign a public IP address.

executionRole String

The ARN of the role to use for execution.

securityGroupIds List<String>

The security group ids to apply to the ecs service.

subnetIds List<String>

The subnet ids to apply to the ecs service.

vpcId String

The VPC ids to use when selecting the instances.

cloudProviderName string

The name of the cloud provider to connect with.

clusterName string

The name of the ECS cluster to use.

launchType string

The type of launch configuration to use. Valid options are FARGATE

region string

The region to deploy to.

assignPublicIp boolean

Flag to assign a public IP address.

executionRole string

The ARN of the role to use for execution.

securityGroupIds string[]

The security group ids to apply to the ecs service.

subnetIds string[]

The subnet ids to apply to the ecs service.

vpcId string

The VPC ids to use when selecting the instances.

cloud_provider_name str

The name of the cloud provider to connect with.

cluster_name str

The name of the ECS cluster to use.

launch_type str

The type of launch configuration to use. Valid options are FARGATE

region str

The region to deploy to.

assign_public_ip bool

Flag to assign a public IP address.

execution_role str

The ARN of the role to use for execution.

security_group_ids Sequence[str]

The security group ids to apply to the ecs service.

subnet_ids Sequence[str]

The subnet ids to apply to the ecs service.

vpc_id str

The VPC ids to use when selecting the instances.

cloudProviderName String

The name of the cloud provider to connect with.

clusterName String

The name of the ECS cluster to use.

launchType String

The type of launch configuration to use. Valid options are FARGATE

region String

The region to deploy to.

assignPublicIp Boolean

Flag to assign a public IP address.

executionRole String

The ARN of the role to use for execution.

securityGroupIds List<String>

The security group ids to apply to the ecs service.

subnetIds List<String>

The subnet ids to apply to the ecs service.

vpcId String

The VPC ids to use when selecting the instances.

InfrastructureDefinitionAwsLambda

CloudProviderName string

The name of the cloud provider to connect with.

Region string

The region to deploy to.

IamRole string

The IAM role to use.

SecurityGroupIds List<string>

The security group ids to apply to the ecs service.

SubnetIds List<string>

The subnet ids to apply to the ecs service.

VpcId string

The VPC ids to use when selecting the instances.

CloudProviderName string

The name of the cloud provider to connect with.

Region string

The region to deploy to.

IamRole string

The IAM role to use.

SecurityGroupIds []string

The security group ids to apply to the ecs service.

SubnetIds []string

The subnet ids to apply to the ecs service.

VpcId string

The VPC ids to use when selecting the instances.

cloudProviderName String

The name of the cloud provider to connect with.

region String

The region to deploy to.

iamRole String

The IAM role to use.

securityGroupIds List<String>

The security group ids to apply to the ecs service.

subnetIds List<String>

The subnet ids to apply to the ecs service.

vpcId String

The VPC ids to use when selecting the instances.

cloudProviderName string

The name of the cloud provider to connect with.

region string

The region to deploy to.

iamRole string

The IAM role to use.

securityGroupIds string[]

The security group ids to apply to the ecs service.

subnetIds string[]

The subnet ids to apply to the ecs service.

vpcId string

The VPC ids to use when selecting the instances.

cloud_provider_name str

The name of the cloud provider to connect with.

region str

The region to deploy to.

iam_role str

The IAM role to use.

security_group_ids Sequence[str]

The security group ids to apply to the ecs service.

subnet_ids Sequence[str]

The subnet ids to apply to the ecs service.

vpc_id str

The VPC ids to use when selecting the instances.

cloudProviderName String

The name of the cloud provider to connect with.

region String

The region to deploy to.

iamRole String

The IAM role to use.

securityGroupIds List<String>

The security group ids to apply to the ecs service.

subnetIds List<String>

The subnet ids to apply to the ecs service.

vpcId String

The VPC ids to use when selecting the instances.

InfrastructureDefinitionAwsSsh

CloudProviderName string

The name of the cloud provider to connect with.

HostConnectionType string

The type of host connection to use. Valid options are PRIVATEDNS, PUBLICDNS, PRIVATEIP, PUBLICIP

Region string

The region to deploy to.

AutoscalingGroupName string

The name of the autoscaling group.

DesiredCapacity int

The desired capacity of the auto scaling group.

HostConnectionAttrsName string

The name of the host connection attributes to use.

HostnameConvention string

The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}

LoadbalancerName string

The name of the load balancer to use.

Tags List<Lbrlabs.PulumiPackage.Harness.Inputs.InfrastructureDefinitionAwsSshTag>

The tags to use when selecting the instances.

VpcIds List<string>

The VPC ids to use when selecting the instances.

CloudProviderName string

The name of the cloud provider to connect with.

HostConnectionType string

The type of host connection to use. Valid options are PRIVATEDNS, PUBLICDNS, PRIVATEIP, PUBLICIP

Region string

The region to deploy to.

AutoscalingGroupName string

The name of the autoscaling group.

DesiredCapacity int

The desired capacity of the auto scaling group.

HostConnectionAttrsName string

The name of the host connection attributes to use.

HostnameConvention string

The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}

LoadbalancerName string

The name of the load balancer to use.

Tags []InfrastructureDefinitionAwsSshTag

The tags to use when selecting the instances.

VpcIds []string

The VPC ids to use when selecting the instances.

cloudProviderName String

The name of the cloud provider to connect with.

hostConnectionType String

The type of host connection to use. Valid options are PRIVATEDNS, PUBLICDNS, PRIVATEIP, PUBLICIP

region String

The region to deploy to.

autoscalingGroupName String

The name of the autoscaling group.

desiredCapacity Integer

The desired capacity of the auto scaling group.

hostConnectionAttrsName String

The name of the host connection attributes to use.

hostnameConvention String

The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}

loadbalancerName String

The name of the load balancer to use.

tags List<InfrastructureDefinitionAwsSshTag>

The tags to use when selecting the instances.

vpcIds List<String>

The VPC ids to use when selecting the instances.

cloudProviderName string

The name of the cloud provider to connect with.

hostConnectionType string

The type of host connection to use. Valid options are PRIVATEDNS, PUBLICDNS, PRIVATEIP, PUBLICIP

region string

The region to deploy to.

autoscalingGroupName string

The name of the autoscaling group.

desiredCapacity number

The desired capacity of the auto scaling group.

hostConnectionAttrsName string

The name of the host connection attributes to use.

hostnameConvention string

The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}

loadbalancerName string

The name of the load balancer to use.

tags InfrastructureDefinitionAwsSshTag[]

The tags to use when selecting the instances.

vpcIds string[]

The VPC ids to use when selecting the instances.

cloud_provider_name str

The name of the cloud provider to connect with.

host_connection_type str

The type of host connection to use. Valid options are PRIVATEDNS, PUBLICDNS, PRIVATEIP, PUBLICIP

region str

The region to deploy to.

autoscaling_group_name str

The name of the autoscaling group.

desired_capacity int

The desired capacity of the auto scaling group.

host_connection_attrs_name str

The name of the host connection attributes to use.

hostname_convention str

The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}

loadbalancer_name str

The name of the load balancer to use.

tags Sequence[InfrastructureDefinitionAwsSshTag]

The tags to use when selecting the instances.

vpc_ids Sequence[str]

The VPC ids to use when selecting the instances.

cloudProviderName String

The name of the cloud provider to connect with.

hostConnectionType String

The type of host connection to use. Valid options are PRIVATEDNS, PUBLICDNS, PRIVATEIP, PUBLICIP

region String

The region to deploy to.

autoscalingGroupName String

The name of the autoscaling group.

desiredCapacity Number

The desired capacity of the auto scaling group.

hostConnectionAttrsName String

The name of the host connection attributes to use.

hostnameConvention String

The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}

loadbalancerName String

The name of the load balancer to use.

tags List<Property Map>

The tags to use when selecting the instances.

vpcIds List<String>

The VPC ids to use when selecting the instances.

InfrastructureDefinitionAwsSshTag

Key string
Value string
Key string
Value string
key String
value String
key string
value string
key str
value str
key String
value String

InfrastructureDefinitionAwsWinrm

AutoscalingGroupName string

The name of the autoscaling group.

CloudProviderName string

The name of the cloud provider to connect with.

HostConnectionAttrsName string

The name of the host connection attributes to use.

HostConnectionType string

The type of host connection to use. Valid options are PRIVATEDNS, PUBLICDNS, PRIVATEIP, PUBLICIP

Region string

The region to deploy to.

DesiredCapacity int

The desired capacity of the autoscaling group.

HostnameConvention string

The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}

LoadbalancerName string

The name of the load balancer to use.

AutoscalingGroupName string

The name of the autoscaling group.

CloudProviderName string

The name of the cloud provider to connect with.

HostConnectionAttrsName string

The name of the host connection attributes to use.

HostConnectionType string

The type of host connection to use. Valid options are PRIVATEDNS, PUBLICDNS, PRIVATEIP, PUBLICIP

Region string

The region to deploy to.

DesiredCapacity int

The desired capacity of the autoscaling group.

HostnameConvention string

The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}

LoadbalancerName string

The name of the load balancer to use.

autoscalingGroupName String

The name of the autoscaling group.

cloudProviderName String

The name of the cloud provider to connect with.

hostConnectionAttrsName String

The name of the host connection attributes to use.

hostConnectionType String

The type of host connection to use. Valid options are PRIVATEDNS, PUBLICDNS, PRIVATEIP, PUBLICIP

region String

The region to deploy to.

desiredCapacity Integer

The desired capacity of the autoscaling group.

hostnameConvention String

The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}

loadbalancerName String

The name of the load balancer to use.

autoscalingGroupName string

The name of the autoscaling group.

cloudProviderName string

The name of the cloud provider to connect with.

hostConnectionAttrsName string

The name of the host connection attributes to use.

hostConnectionType string

The type of host connection to use. Valid options are PRIVATEDNS, PUBLICDNS, PRIVATEIP, PUBLICIP

region string

The region to deploy to.

desiredCapacity number

The desired capacity of the autoscaling group.

hostnameConvention string

The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}

loadbalancerName string

The name of the load balancer to use.

autoscaling_group_name str

The name of the autoscaling group.

cloud_provider_name str

The name of the cloud provider to connect with.

host_connection_attrs_name str

The name of the host connection attributes to use.

host_connection_type str

The type of host connection to use. Valid options are PRIVATEDNS, PUBLICDNS, PRIVATEIP, PUBLICIP

region str

The region to deploy to.

desired_capacity int

The desired capacity of the autoscaling group.

hostname_convention str

The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}

loadbalancer_name str

The name of the load balancer to use.

autoscalingGroupName String

The name of the autoscaling group.

cloudProviderName String

The name of the cloud provider to connect with.

hostConnectionAttrsName String

The name of the host connection attributes to use.

hostConnectionType String

The type of host connection to use. Valid options are PRIVATEDNS, PUBLICDNS, PRIVATEIP, PUBLICIP

region String

The region to deploy to.

desiredCapacity Number

The desired capacity of the autoscaling group.

hostnameConvention String

The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}

loadbalancerName String

The name of the load balancer to use.

InfrastructureDefinitionAzureVmss

AuthType string

The type of authentication to use. Valid options are SSHPUBLICKEY.

BaseName string

Base name.

CloudProviderName string

The name of the cloud provider to connect with.

DeploymentType string

The type of deployment. Valid options are NATIVE_VMSS

ResourceGroupName string

The name of the resource group.

SubscriptionId string

The unique id of the azure subscription.

Username string

The username to connect with.

HostConnectionAttrsName string

The name of the host connection attributes to use.

AuthType string

The type of authentication to use. Valid options are SSHPUBLICKEY.

BaseName string

Base name.

CloudProviderName string

The name of the cloud provider to connect with.

DeploymentType string

The type of deployment. Valid options are NATIVE_VMSS

ResourceGroupName string

The name of the resource group.

SubscriptionId string

The unique id of the azure subscription.

Username string

The username to connect with.

HostConnectionAttrsName string

The name of the host connection attributes to use.

authType String

The type of authentication to use. Valid options are SSHPUBLICKEY.

baseName String

Base name.

cloudProviderName String

The name of the cloud provider to connect with.

deploymentType String

The type of deployment. Valid options are NATIVE_VMSS

resourceGroupName String

The name of the resource group.

subscriptionId String

The unique id of the azure subscription.

username String

The username to connect with.

hostConnectionAttrsName String

The name of the host connection attributes to use.

authType string

The type of authentication to use. Valid options are SSHPUBLICKEY.

baseName string

Base name.

cloudProviderName string

The name of the cloud provider to connect with.

deploymentType string

The type of deployment. Valid options are NATIVE_VMSS

resourceGroupName string

The name of the resource group.

subscriptionId string

The unique id of the azure subscription.

username string

The username to connect with.

hostConnectionAttrsName string

The name of the host connection attributes to use.

auth_type str

The type of authentication to use. Valid options are SSHPUBLICKEY.

base_name str

Base name.

cloud_provider_name str

The name of the cloud provider to connect with.

deployment_type str

The type of deployment. Valid options are NATIVE_VMSS

resource_group_name str

The name of the resource group.

subscription_id str

The unique id of the azure subscription.

username str

The username to connect with.

host_connection_attrs_name str

The name of the host connection attributes to use.

authType String

The type of authentication to use. Valid options are SSHPUBLICKEY.

baseName String

Base name.

cloudProviderName String

The name of the cloud provider to connect with.

deploymentType String

The type of deployment. Valid options are NATIVE_VMSS

resourceGroupName String

The name of the resource group.

subscriptionId String

The unique id of the azure subscription.

username String

The username to connect with.

hostConnectionAttrsName String

The name of the host connection attributes to use.

InfrastructureDefinitionAzureWebapp

CloudProviderName string

The name of the cloud provider to connect with.

ResourceGroup string

The name of the resource group.

SubscriptionId string

The unique id of the azure subscription.

CloudProviderName string

The name of the cloud provider to connect with.

ResourceGroup string

The name of the resource group.

SubscriptionId string

The unique id of the azure subscription.

cloudProviderName String

The name of the cloud provider to connect with.

resourceGroup String

The name of the resource group.

subscriptionId String

The unique id of the azure subscription.

cloudProviderName string

The name of the cloud provider to connect with.

resourceGroup string

The name of the resource group.

subscriptionId string

The unique id of the azure subscription.

cloud_provider_name str

The name of the cloud provider to connect with.

resource_group str

The name of the resource group.

subscription_id str

The unique id of the azure subscription.

cloudProviderName String

The name of the cloud provider to connect with.

resourceGroup String

The name of the resource group.

subscriptionId String

The unique id of the azure subscription.

InfrastructureDefinitionDatacenterSsh

CloudProviderName string

The name of the cloud provider to connect with.

HostConnectionAttributesName string

The name of the SSH connection attributes to use.

Hostnames List<string>

A list of hosts to deploy to.

CloudProviderName string

The name of the cloud provider to connect with.

HostConnectionAttributesName string

The name of the SSH connection attributes to use.

Hostnames []string

A list of hosts to deploy to.

cloudProviderName String

The name of the cloud provider to connect with.

hostConnectionAttributesName String

The name of the SSH connection attributes to use.

hostnames List<String>

A list of hosts to deploy to.

cloudProviderName string

The name of the cloud provider to connect with.

hostConnectionAttributesName string

The name of the SSH connection attributes to use.

hostnames string[]

A list of hosts to deploy to.

cloud_provider_name str

The name of the cloud provider to connect with.

host_connection_attributes_name str

The name of the SSH connection attributes to use.

hostnames Sequence[str]

A list of hosts to deploy to.

cloudProviderName String

The name of the cloud provider to connect with.

hostConnectionAttributesName String

The name of the SSH connection attributes to use.

hostnames List<String>

A list of hosts to deploy to.

InfrastructureDefinitionDatacenterWinrm

CloudProviderName string

The name of the cloud provider to connect with.

Hostnames List<string>

A list of hosts to deploy to.

WinrmConnectionAttributesName string

The name of the WinRM connection attributes to use.

CloudProviderName string

The name of the cloud provider to connect with.

Hostnames []string

A list of hosts to deploy to.

WinrmConnectionAttributesName string

The name of the WinRM connection attributes to use.

cloudProviderName String

The name of the cloud provider to connect with.

hostnames List<String>

A list of hosts to deploy to.

winrmConnectionAttributesName String

The name of the WinRM connection attributes to use.

cloudProviderName string

The name of the cloud provider to connect with.

hostnames string[]

A list of hosts to deploy to.

winrmConnectionAttributesName string

The name of the WinRM connection attributes to use.

cloud_provider_name str

The name of the cloud provider to connect with.

hostnames Sequence[str]

A list of hosts to deploy to.

winrm_connection_attributes_name str

The name of the WinRM connection attributes to use.

cloudProviderName String

The name of the cloud provider to connect with.

hostnames List<String>

A list of hosts to deploy to.

winrmConnectionAttributesName String

The name of the WinRM connection attributes to use.

InfrastructureDefinitionKubernetes

CloudProviderName string

The name of the cloud provider to connect with.

Namespace string

The namespace in Kubernetes to deploy to.

ReleaseName string

The naming convention of the release. When using Helm Native the default is ${infra.kubernetes.infraId}. For standard Kubernetes manifests the default is release-${infra.kubernetes.infraId}

CloudProviderName string

The name of the cloud provider to connect with.

Namespace string

The namespace in Kubernetes to deploy to.

ReleaseName string

The naming convention of the release. When using Helm Native the default is ${infra.kubernetes.infraId}. For standard Kubernetes manifests the default is release-${infra.kubernetes.infraId}

cloudProviderName String

The name of the cloud provider to connect with.

namespace String

The namespace in Kubernetes to deploy to.

releaseName String

The naming convention of the release. When using Helm Native the default is ${infra.kubernetes.infraId}. For standard Kubernetes manifests the default is release-${infra.kubernetes.infraId}

cloudProviderName string

The name of the cloud provider to connect with.

namespace string

The namespace in Kubernetes to deploy to.

releaseName string

The naming convention of the release. When using Helm Native the default is ${infra.kubernetes.infraId}. For standard Kubernetes manifests the default is release-${infra.kubernetes.infraId}

cloud_provider_name str

The name of the cloud provider to connect with.

namespace str

The namespace in Kubernetes to deploy to.

release_name str

The naming convention of the release. When using Helm Native the default is ${infra.kubernetes.infraId}. For standard Kubernetes manifests the default is release-${infra.kubernetes.infraId}

cloudProviderName String

The name of the cloud provider to connect with.

namespace String

The namespace in Kubernetes to deploy to.

releaseName String

The naming convention of the release. When using Helm Native the default is ${infra.kubernetes.infraId}. For standard Kubernetes manifests the default is release-${infra.kubernetes.infraId}

InfrastructureDefinitionKubernetesGcp

CloudProviderName string

The name of the cloud provider to connect with.

ClusterName string

The name of the cluster being deployed to.

Namespace string

The namespace in Kubernetes to deploy to.

ReleaseName string

The naming convention of the release.

CloudProviderName string

The name of the cloud provider to connect with.

ClusterName string

The name of the cluster being deployed to.

Namespace string

The namespace in Kubernetes to deploy to.

ReleaseName string

The naming convention of the release.

cloudProviderName String

The name of the cloud provider to connect with.

clusterName String

The name of the cluster being deployed to.

namespace String

The namespace in Kubernetes to deploy to.

releaseName String

The naming convention of the release.

cloudProviderName string

The name of the cloud provider to connect with.

clusterName string

The name of the cluster being deployed to.

namespace string

The namespace in Kubernetes to deploy to.

releaseName string

The naming convention of the release.

cloud_provider_name str

The name of the cloud provider to connect with.

cluster_name str

The name of the cluster being deployed to.

namespace str

The namespace in Kubernetes to deploy to.

release_name str

The naming convention of the release.

cloudProviderName String

The name of the cloud provider to connect with.

clusterName String

The name of the cluster being deployed to.

namespace String

The namespace in Kubernetes to deploy to.

releaseName String

The naming convention of the release.

InfrastructureDefinitionTanzu

CloudProviderName string

The name of the cloud provider to connect with.

Organization string

The PCF organization to use.

Space string

The PCF space to deploy to.

CloudProviderName string

The name of the cloud provider to connect with.

Organization string

The PCF organization to use.

Space string

The PCF space to deploy to.

cloudProviderName String

The name of the cloud provider to connect with.

organization String

The PCF organization to use.

space String

The PCF space to deploy to.

cloudProviderName string

The name of the cloud provider to connect with.

organization string

The PCF organization to use.

space string

The PCF space to deploy to.

cloud_provider_name str

The name of the cloud provider to connect with.

organization str

The PCF organization to use.

space str

The PCF space to deploy to.

cloudProviderName String

The name of the cloud provider to connect with.

organization String

The PCF organization to use.

space String

The PCF space to deploy to.

Import

Import using the Harness application id, environment id, and infrastructure definition id

 $ pulumi import harness:index/infrastructureDefinition:InfrastructureDefinition example <app_id>/<env_id>/<infradef_id>

Package Details

Repository
harness lbrlabs/pulumi-harness
License
Apache-2.0
Notes

This Pulumi package is based on the harness Terraform Provider.