1. Packages
  2. AWS
  3. API Docs
  4. opsworks
  5. HaproxyLayer
AWS v6.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

aws.opsworks.HaproxyLayer

Explore with Pulumi AI

Example Usage

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

const lb = new aws.opsworks.HaproxyLayer("lb", {
    stackId: main.id,
    statsPassword: "foobarbaz",
});
Copy
import pulumi
import pulumi_aws as aws

lb = aws.opsworks.HaproxyLayer("lb",
    stack_id=main["id"],
    stats_password="foobarbaz")
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/opsworks"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := opsworks.NewHaproxyLayer(ctx, "lb", &opsworks.HaproxyLayerArgs{
			StackId:       pulumi.Any(main.Id),
			StatsPassword: pulumi.String("foobarbaz"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var lb = new Aws.OpsWorks.HaproxyLayer("lb", new()
    {
        StackId = main.Id,
        StatsPassword = "foobarbaz",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.opsworks.HaproxyLayer;
import com.pulumi.aws.opsworks.HaproxyLayerArgs;
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 lb = new HaproxyLayer("lb", HaproxyLayerArgs.builder()
            .stackId(main.id())
            .statsPassword("foobarbaz")
            .build());

    }
}
Copy
resources:
  lb:
    type: aws:opsworks:HaproxyLayer
    properties:
      stackId: ${main.id}
      statsPassword: foobarbaz
Copy

Create HaproxyLayer Resource

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

Constructor syntax

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

@overload
def HaproxyLayer(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 stack_id: Optional[str] = None,
                 stats_password: Optional[str] = None,
                 custom_json: Optional[str] = None,
                 use_ebs_optimized_instances: Optional[bool] = None,
                 elastic_load_balancer: Optional[str] = None,
                 custom_deploy_recipes: Optional[Sequence[str]] = None,
                 custom_instance_profile_arn: Optional[str] = None,
                 auto_assign_elastic_ips: Optional[bool] = None,
                 custom_security_group_ids: Optional[Sequence[str]] = None,
                 custom_setup_recipes: Optional[Sequence[str]] = None,
                 custom_shutdown_recipes: Optional[Sequence[str]] = None,
                 custom_undeploy_recipes: Optional[Sequence[str]] = None,
                 drain_elb_on_shutdown: Optional[bool] = None,
                 ebs_volumes: Optional[Sequence[HaproxyLayerEbsVolumeArgs]] = None,
                 custom_configure_recipes: Optional[Sequence[str]] = None,
                 cloudwatch_configuration: Optional[HaproxyLayerCloudwatchConfigurationArgs] = None,
                 auto_assign_public_ips: Optional[bool] = None,
                 install_updates_on_boot: Optional[bool] = None,
                 instance_shutdown_timeout: Optional[int] = None,
                 load_based_auto_scaling: Optional[HaproxyLayerLoadBasedAutoScalingArgs] = None,
                 name: Optional[str] = None,
                 auto_healing: Optional[bool] = None,
                 stats_enabled: Optional[bool] = None,
                 healthcheck_url: Optional[str] = None,
                 stats_url: Optional[str] = None,
                 stats_user: Optional[str] = None,
                 system_packages: Optional[Sequence[str]] = None,
                 tags: Optional[Mapping[str, str]] = None,
                 healthcheck_method: Optional[str] = None)
func NewHaproxyLayer(ctx *Context, name string, args HaproxyLayerArgs, opts ...ResourceOption) (*HaproxyLayer, error)
public HaproxyLayer(string name, HaproxyLayerArgs args, CustomResourceOptions? opts = null)
public HaproxyLayer(String name, HaproxyLayerArgs args)
public HaproxyLayer(String name, HaproxyLayerArgs args, CustomResourceOptions options)
type: aws:opsworks:HaproxyLayer
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. HaproxyLayerArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. HaproxyLayerArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. HaproxyLayerArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. HaproxyLayerArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. HaproxyLayerArgs
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 haproxyLayerResource = new Aws.OpsWorks.HaproxyLayer("haproxyLayerResource", new()
{
    StackId = "string",
    StatsPassword = "string",
    CustomJson = "string",
    UseEbsOptimizedInstances = false,
    ElasticLoadBalancer = "string",
    CustomDeployRecipes = new[]
    {
        "string",
    },
    CustomInstanceProfileArn = "string",
    AutoAssignElasticIps = false,
    CustomSecurityGroupIds = new[]
    {
        "string",
    },
    CustomSetupRecipes = new[]
    {
        "string",
    },
    CustomShutdownRecipes = new[]
    {
        "string",
    },
    CustomUndeployRecipes = new[]
    {
        "string",
    },
    DrainElbOnShutdown = false,
    EbsVolumes = new[]
    {
        new Aws.OpsWorks.Inputs.HaproxyLayerEbsVolumeArgs
        {
            MountPoint = "string",
            NumberOfDisks = 0,
            Size = 0,
            Encrypted = false,
            Iops = 0,
            RaidLevel = "string",
            Type = "string",
        },
    },
    CustomConfigureRecipes = new[]
    {
        "string",
    },
    CloudwatchConfiguration = new Aws.OpsWorks.Inputs.HaproxyLayerCloudwatchConfigurationArgs
    {
        Enabled = false,
        LogStreams = new[]
        {
            new Aws.OpsWorks.Inputs.HaproxyLayerCloudwatchConfigurationLogStreamArgs
            {
                File = "string",
                LogGroupName = "string",
                BatchCount = 0,
                BatchSize = 0,
                BufferDuration = 0,
                DatetimeFormat = "string",
                Encoding = "string",
                FileFingerprintLines = "string",
                InitialPosition = "string",
                MultilineStartPattern = "string",
                TimeZone = "string",
            },
        },
    },
    AutoAssignPublicIps = false,
    InstallUpdatesOnBoot = false,
    InstanceShutdownTimeout = 0,
    LoadBasedAutoScaling = new Aws.OpsWorks.Inputs.HaproxyLayerLoadBasedAutoScalingArgs
    {
        Downscaling = new Aws.OpsWorks.Inputs.HaproxyLayerLoadBasedAutoScalingDownscalingArgs
        {
            Alarms = new[]
            {
                "string",
            },
            CpuThreshold = 0,
            IgnoreMetricsTime = 0,
            InstanceCount = 0,
            LoadThreshold = 0,
            MemoryThreshold = 0,
            ThresholdsWaitTime = 0,
        },
        Enable = false,
        Upscaling = new Aws.OpsWorks.Inputs.HaproxyLayerLoadBasedAutoScalingUpscalingArgs
        {
            Alarms = new[]
            {
                "string",
            },
            CpuThreshold = 0,
            IgnoreMetricsTime = 0,
            InstanceCount = 0,
            LoadThreshold = 0,
            MemoryThreshold = 0,
            ThresholdsWaitTime = 0,
        },
    },
    Name = "string",
    AutoHealing = false,
    StatsEnabled = false,
    HealthcheckUrl = "string",
    StatsUrl = "string",
    StatsUser = "string",
    SystemPackages = new[]
    {
        "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
    HealthcheckMethod = "string",
});
Copy
example, err := opsworks.NewHaproxyLayer(ctx, "haproxyLayerResource", &opsworks.HaproxyLayerArgs{
	StackId:                  pulumi.String("string"),
	StatsPassword:            pulumi.String("string"),
	CustomJson:               pulumi.String("string"),
	UseEbsOptimizedInstances: pulumi.Bool(false),
	ElasticLoadBalancer:      pulumi.String("string"),
	CustomDeployRecipes: pulumi.StringArray{
		pulumi.String("string"),
	},
	CustomInstanceProfileArn: pulumi.String("string"),
	AutoAssignElasticIps:     pulumi.Bool(false),
	CustomSecurityGroupIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	CustomSetupRecipes: pulumi.StringArray{
		pulumi.String("string"),
	},
	CustomShutdownRecipes: pulumi.StringArray{
		pulumi.String("string"),
	},
	CustomUndeployRecipes: pulumi.StringArray{
		pulumi.String("string"),
	},
	DrainElbOnShutdown: pulumi.Bool(false),
	EbsVolumes: opsworks.HaproxyLayerEbsVolumeArray{
		&opsworks.HaproxyLayerEbsVolumeArgs{
			MountPoint:    pulumi.String("string"),
			NumberOfDisks: pulumi.Int(0),
			Size:          pulumi.Int(0),
			Encrypted:     pulumi.Bool(false),
			Iops:          pulumi.Int(0),
			RaidLevel:     pulumi.String("string"),
			Type:          pulumi.String("string"),
		},
	},
	CustomConfigureRecipes: pulumi.StringArray{
		pulumi.String("string"),
	},
	CloudwatchConfiguration: &opsworks.HaproxyLayerCloudwatchConfigurationArgs{
		Enabled: pulumi.Bool(false),
		LogStreams: opsworks.HaproxyLayerCloudwatchConfigurationLogStreamArray{
			&opsworks.HaproxyLayerCloudwatchConfigurationLogStreamArgs{
				File:                  pulumi.String("string"),
				LogGroupName:          pulumi.String("string"),
				BatchCount:            pulumi.Int(0),
				BatchSize:             pulumi.Int(0),
				BufferDuration:        pulumi.Int(0),
				DatetimeFormat:        pulumi.String("string"),
				Encoding:              pulumi.String("string"),
				FileFingerprintLines:  pulumi.String("string"),
				InitialPosition:       pulumi.String("string"),
				MultilineStartPattern: pulumi.String("string"),
				TimeZone:              pulumi.String("string"),
			},
		},
	},
	AutoAssignPublicIps:     pulumi.Bool(false),
	InstallUpdatesOnBoot:    pulumi.Bool(false),
	InstanceShutdownTimeout: pulumi.Int(0),
	LoadBasedAutoScaling: &opsworks.HaproxyLayerLoadBasedAutoScalingArgs{
		Downscaling: &opsworks.HaproxyLayerLoadBasedAutoScalingDownscalingArgs{
			Alarms: pulumi.StringArray{
				pulumi.String("string"),
			},
			CpuThreshold:       pulumi.Float64(0),
			IgnoreMetricsTime:  pulumi.Int(0),
			InstanceCount:      pulumi.Int(0),
			LoadThreshold:      pulumi.Float64(0),
			MemoryThreshold:    pulumi.Float64(0),
			ThresholdsWaitTime: pulumi.Int(0),
		},
		Enable: pulumi.Bool(false),
		Upscaling: &opsworks.HaproxyLayerLoadBasedAutoScalingUpscalingArgs{
			Alarms: pulumi.StringArray{
				pulumi.String("string"),
			},
			CpuThreshold:       pulumi.Float64(0),
			IgnoreMetricsTime:  pulumi.Int(0),
			InstanceCount:      pulumi.Int(0),
			LoadThreshold:      pulumi.Float64(0),
			MemoryThreshold:    pulumi.Float64(0),
			ThresholdsWaitTime: pulumi.Int(0),
		},
	},
	Name:           pulumi.String("string"),
	AutoHealing:    pulumi.Bool(false),
	StatsEnabled:   pulumi.Bool(false),
	HealthcheckUrl: pulumi.String("string"),
	StatsUrl:       pulumi.String("string"),
	StatsUser:      pulumi.String("string"),
	SystemPackages: pulumi.StringArray{
		pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	HealthcheckMethod: pulumi.String("string"),
})
Copy
var haproxyLayerResource = new HaproxyLayer("haproxyLayerResource", HaproxyLayerArgs.builder()
    .stackId("string")
    .statsPassword("string")
    .customJson("string")
    .useEbsOptimizedInstances(false)
    .elasticLoadBalancer("string")
    .customDeployRecipes("string")
    .customInstanceProfileArn("string")
    .autoAssignElasticIps(false)
    .customSecurityGroupIds("string")
    .customSetupRecipes("string")
    .customShutdownRecipes("string")
    .customUndeployRecipes("string")
    .drainElbOnShutdown(false)
    .ebsVolumes(HaproxyLayerEbsVolumeArgs.builder()
        .mountPoint("string")
        .numberOfDisks(0)
        .size(0)
        .encrypted(false)
        .iops(0)
        .raidLevel("string")
        .type("string")
        .build())
    .customConfigureRecipes("string")
    .cloudwatchConfiguration(HaproxyLayerCloudwatchConfigurationArgs.builder()
        .enabled(false)
        .logStreams(HaproxyLayerCloudwatchConfigurationLogStreamArgs.builder()
            .file("string")
            .logGroupName("string")
            .batchCount(0)
            .batchSize(0)
            .bufferDuration(0)
            .datetimeFormat("string")
            .encoding("string")
            .fileFingerprintLines("string")
            .initialPosition("string")
            .multilineStartPattern("string")
            .timeZone("string")
            .build())
        .build())
    .autoAssignPublicIps(false)
    .installUpdatesOnBoot(false)
    .instanceShutdownTimeout(0)
    .loadBasedAutoScaling(HaproxyLayerLoadBasedAutoScalingArgs.builder()
        .downscaling(HaproxyLayerLoadBasedAutoScalingDownscalingArgs.builder()
            .alarms("string")
            .cpuThreshold(0)
            .ignoreMetricsTime(0)
            .instanceCount(0)
            .loadThreshold(0)
            .memoryThreshold(0)
            .thresholdsWaitTime(0)
            .build())
        .enable(false)
        .upscaling(HaproxyLayerLoadBasedAutoScalingUpscalingArgs.builder()
            .alarms("string")
            .cpuThreshold(0)
            .ignoreMetricsTime(0)
            .instanceCount(0)
            .loadThreshold(0)
            .memoryThreshold(0)
            .thresholdsWaitTime(0)
            .build())
        .build())
    .name("string")
    .autoHealing(false)
    .statsEnabled(false)
    .healthcheckUrl("string")
    .statsUrl("string")
    .statsUser("string")
    .systemPackages("string")
    .tags(Map.of("string", "string"))
    .healthcheckMethod("string")
    .build());
Copy
haproxy_layer_resource = aws.opsworks.HaproxyLayer("haproxyLayerResource",
    stack_id="string",
    stats_password="string",
    custom_json="string",
    use_ebs_optimized_instances=False,
    elastic_load_balancer="string",
    custom_deploy_recipes=["string"],
    custom_instance_profile_arn="string",
    auto_assign_elastic_ips=False,
    custom_security_group_ids=["string"],
    custom_setup_recipes=["string"],
    custom_shutdown_recipes=["string"],
    custom_undeploy_recipes=["string"],
    drain_elb_on_shutdown=False,
    ebs_volumes=[{
        "mount_point": "string",
        "number_of_disks": 0,
        "size": 0,
        "encrypted": False,
        "iops": 0,
        "raid_level": "string",
        "type": "string",
    }],
    custom_configure_recipes=["string"],
    cloudwatch_configuration={
        "enabled": False,
        "log_streams": [{
            "file": "string",
            "log_group_name": "string",
            "batch_count": 0,
            "batch_size": 0,
            "buffer_duration": 0,
            "datetime_format": "string",
            "encoding": "string",
            "file_fingerprint_lines": "string",
            "initial_position": "string",
            "multiline_start_pattern": "string",
            "time_zone": "string",
        }],
    },
    auto_assign_public_ips=False,
    install_updates_on_boot=False,
    instance_shutdown_timeout=0,
    load_based_auto_scaling={
        "downscaling": {
            "alarms": ["string"],
            "cpu_threshold": 0,
            "ignore_metrics_time": 0,
            "instance_count": 0,
            "load_threshold": 0,
            "memory_threshold": 0,
            "thresholds_wait_time": 0,
        },
        "enable": False,
        "upscaling": {
            "alarms": ["string"],
            "cpu_threshold": 0,
            "ignore_metrics_time": 0,
            "instance_count": 0,
            "load_threshold": 0,
            "memory_threshold": 0,
            "thresholds_wait_time": 0,
        },
    },
    name="string",
    auto_healing=False,
    stats_enabled=False,
    healthcheck_url="string",
    stats_url="string",
    stats_user="string",
    system_packages=["string"],
    tags={
        "string": "string",
    },
    healthcheck_method="string")
Copy
const haproxyLayerResource = new aws.opsworks.HaproxyLayer("haproxyLayerResource", {
    stackId: "string",
    statsPassword: "string",
    customJson: "string",
    useEbsOptimizedInstances: false,
    elasticLoadBalancer: "string",
    customDeployRecipes: ["string"],
    customInstanceProfileArn: "string",
    autoAssignElasticIps: false,
    customSecurityGroupIds: ["string"],
    customSetupRecipes: ["string"],
    customShutdownRecipes: ["string"],
    customUndeployRecipes: ["string"],
    drainElbOnShutdown: false,
    ebsVolumes: [{
        mountPoint: "string",
        numberOfDisks: 0,
        size: 0,
        encrypted: false,
        iops: 0,
        raidLevel: "string",
        type: "string",
    }],
    customConfigureRecipes: ["string"],
    cloudwatchConfiguration: {
        enabled: false,
        logStreams: [{
            file: "string",
            logGroupName: "string",
            batchCount: 0,
            batchSize: 0,
            bufferDuration: 0,
            datetimeFormat: "string",
            encoding: "string",
            fileFingerprintLines: "string",
            initialPosition: "string",
            multilineStartPattern: "string",
            timeZone: "string",
        }],
    },
    autoAssignPublicIps: false,
    installUpdatesOnBoot: false,
    instanceShutdownTimeout: 0,
    loadBasedAutoScaling: {
        downscaling: {
            alarms: ["string"],
            cpuThreshold: 0,
            ignoreMetricsTime: 0,
            instanceCount: 0,
            loadThreshold: 0,
            memoryThreshold: 0,
            thresholdsWaitTime: 0,
        },
        enable: false,
        upscaling: {
            alarms: ["string"],
            cpuThreshold: 0,
            ignoreMetricsTime: 0,
            instanceCount: 0,
            loadThreshold: 0,
            memoryThreshold: 0,
            thresholdsWaitTime: 0,
        },
    },
    name: "string",
    autoHealing: false,
    statsEnabled: false,
    healthcheckUrl: "string",
    statsUrl: "string",
    statsUser: "string",
    systemPackages: ["string"],
    tags: {
        string: "string",
    },
    healthcheckMethod: "string",
});
Copy
type: aws:opsworks:HaproxyLayer
properties:
    autoAssignElasticIps: false
    autoAssignPublicIps: false
    autoHealing: false
    cloudwatchConfiguration:
        enabled: false
        logStreams:
            - batchCount: 0
              batchSize: 0
              bufferDuration: 0
              datetimeFormat: string
              encoding: string
              file: string
              fileFingerprintLines: string
              initialPosition: string
              logGroupName: string
              multilineStartPattern: string
              timeZone: string
    customConfigureRecipes:
        - string
    customDeployRecipes:
        - string
    customInstanceProfileArn: string
    customJson: string
    customSecurityGroupIds:
        - string
    customSetupRecipes:
        - string
    customShutdownRecipes:
        - string
    customUndeployRecipes:
        - string
    drainElbOnShutdown: false
    ebsVolumes:
        - encrypted: false
          iops: 0
          mountPoint: string
          numberOfDisks: 0
          raidLevel: string
          size: 0
          type: string
    elasticLoadBalancer: string
    healthcheckMethod: string
    healthcheckUrl: string
    installUpdatesOnBoot: false
    instanceShutdownTimeout: 0
    loadBasedAutoScaling:
        downscaling:
            alarms:
                - string
            cpuThreshold: 0
            ignoreMetricsTime: 0
            instanceCount: 0
            loadThreshold: 0
            memoryThreshold: 0
            thresholdsWaitTime: 0
        enable: false
        upscaling:
            alarms:
                - string
            cpuThreshold: 0
            ignoreMetricsTime: 0
            instanceCount: 0
            loadThreshold: 0
            memoryThreshold: 0
            thresholdsWaitTime: 0
    name: string
    stackId: string
    statsEnabled: false
    statsPassword: string
    statsUrl: string
    statsUser: string
    systemPackages:
        - string
    tags:
        string: string
    useEbsOptimizedInstances: false
Copy

HaproxyLayer Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The HaproxyLayer resource accepts the following input properties:

StackId
This property is required.
Changes to this property will trigger replacement.
string
ID of the stack the layer will belong to.
StatsPassword This property is required. string
The password to use for HAProxy stats.
AutoAssignElasticIps bool
Whether to automatically assign an elastic IP address to the layer's instances.
AutoAssignPublicIps bool
For stacks belonging to a VPC, whether to automatically assign a public IP address to each of the layer's instances.
AutoHealing bool
Whether to enable auto-healing for the layer.
CloudwatchConfiguration HaproxyLayerCloudwatchConfiguration
CustomConfigureRecipes List<string>
CustomDeployRecipes List<string>
CustomInstanceProfileArn string
The ARN of an IAM profile that will be used for the layer's instances.
CustomJson string
Custom JSON attributes to apply to the layer.
CustomSecurityGroupIds List<string>
Ids for a set of security groups to apply to the layer's instances.
CustomSetupRecipes List<string>
CustomShutdownRecipes List<string>
CustomUndeployRecipes List<string>
DrainElbOnShutdown bool
Whether to enable Elastic Load Balancing connection draining.
EbsVolumes List<HaproxyLayerEbsVolume>
ebs_volume blocks, as described below, will each create an EBS volume and connect it to the layer's instances.
ElasticLoadBalancer string
Name of an Elastic Load Balancer to attach to this layer
HealthcheckMethod string
HTTP method to use for instance healthchecks. Defaults to "OPTIONS".
HealthcheckUrl string
URL path to use for instance healthchecks. Defaults to "/".
InstallUpdatesOnBoot bool
Whether to install OS and package updates on each instance when it boots.
InstanceShutdownTimeout int
The time, in seconds, that OpsWorks will wait for Chef to complete after triggering the Shutdown event.
LoadBasedAutoScaling HaproxyLayerLoadBasedAutoScaling
Name string
A human-readable name for the layer.
StatsEnabled bool
Whether to enable HAProxy stats.
StatsUrl string
The HAProxy stats URL. Defaults to "/haproxy?stats".
StatsUser string
The username for HAProxy stats. Defaults to "opsworks".
SystemPackages List<string>
Names of a set of system packages to install on the layer's instances.
Tags Dictionary<string, string>

A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

The following extra optional arguments, all lists of Chef recipe names, allow custom Chef recipes to be applied to layer instances at the five different lifecycle events, if custom cookbooks are enabled on the layer's stack:

UseEbsOptimizedInstances bool
Whether to use EBS-optimized instances.
StackId
This property is required.
Changes to this property will trigger replacement.
string
ID of the stack the layer will belong to.
StatsPassword This property is required. string
The password to use for HAProxy stats.
AutoAssignElasticIps bool
Whether to automatically assign an elastic IP address to the layer's instances.
AutoAssignPublicIps bool
For stacks belonging to a VPC, whether to automatically assign a public IP address to each of the layer's instances.
AutoHealing bool
Whether to enable auto-healing for the layer.
CloudwatchConfiguration HaproxyLayerCloudwatchConfigurationArgs
CustomConfigureRecipes []string
CustomDeployRecipes []string
CustomInstanceProfileArn string
The ARN of an IAM profile that will be used for the layer's instances.
CustomJson string
Custom JSON attributes to apply to the layer.
CustomSecurityGroupIds []string
Ids for a set of security groups to apply to the layer's instances.
CustomSetupRecipes []string
CustomShutdownRecipes []string
CustomUndeployRecipes []string
DrainElbOnShutdown bool
Whether to enable Elastic Load Balancing connection draining.
EbsVolumes []HaproxyLayerEbsVolumeArgs
ebs_volume blocks, as described below, will each create an EBS volume and connect it to the layer's instances.
ElasticLoadBalancer string
Name of an Elastic Load Balancer to attach to this layer
HealthcheckMethod string
HTTP method to use for instance healthchecks. Defaults to "OPTIONS".
HealthcheckUrl string
URL path to use for instance healthchecks. Defaults to "/".
InstallUpdatesOnBoot bool
Whether to install OS and package updates on each instance when it boots.
InstanceShutdownTimeout int
The time, in seconds, that OpsWorks will wait for Chef to complete after triggering the Shutdown event.
LoadBasedAutoScaling HaproxyLayerLoadBasedAutoScalingArgs
Name string
A human-readable name for the layer.
StatsEnabled bool
Whether to enable HAProxy stats.
StatsUrl string
The HAProxy stats URL. Defaults to "/haproxy?stats".
StatsUser string
The username for HAProxy stats. Defaults to "opsworks".
SystemPackages []string
Names of a set of system packages to install on the layer's instances.
Tags map[string]string

A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

The following extra optional arguments, all lists of Chef recipe names, allow custom Chef recipes to be applied to layer instances at the five different lifecycle events, if custom cookbooks are enabled on the layer's stack:

UseEbsOptimizedInstances bool
Whether to use EBS-optimized instances.
stackId
This property is required.
Changes to this property will trigger replacement.
String
ID of the stack the layer will belong to.
statsPassword This property is required. String
The password to use for HAProxy stats.
autoAssignElasticIps Boolean
Whether to automatically assign an elastic IP address to the layer's instances.
autoAssignPublicIps Boolean
For stacks belonging to a VPC, whether to automatically assign a public IP address to each of the layer's instances.
autoHealing Boolean
Whether to enable auto-healing for the layer.
cloudwatchConfiguration HaproxyLayerCloudwatchConfiguration
customConfigureRecipes List<String>
customDeployRecipes List<String>
customInstanceProfileArn String
The ARN of an IAM profile that will be used for the layer's instances.
customJson String
Custom JSON attributes to apply to the layer.
customSecurityGroupIds List<String>
Ids for a set of security groups to apply to the layer's instances.
customSetupRecipes List<String>
customShutdownRecipes List<String>
customUndeployRecipes List<String>
drainElbOnShutdown Boolean
Whether to enable Elastic Load Balancing connection draining.
ebsVolumes List<HaproxyLayerEbsVolume>
ebs_volume blocks, as described below, will each create an EBS volume and connect it to the layer's instances.
elasticLoadBalancer String
Name of an Elastic Load Balancer to attach to this layer
healthcheckMethod String
HTTP method to use for instance healthchecks. Defaults to "OPTIONS".
healthcheckUrl String
URL path to use for instance healthchecks. Defaults to "/".
installUpdatesOnBoot Boolean
Whether to install OS and package updates on each instance when it boots.
instanceShutdownTimeout Integer
The time, in seconds, that OpsWorks will wait for Chef to complete after triggering the Shutdown event.
loadBasedAutoScaling HaproxyLayerLoadBasedAutoScaling
name String
A human-readable name for the layer.
statsEnabled Boolean
Whether to enable HAProxy stats.
statsUrl String
The HAProxy stats URL. Defaults to "/haproxy?stats".
statsUser String
The username for HAProxy stats. Defaults to "opsworks".
systemPackages List<String>
Names of a set of system packages to install on the layer's instances.
tags Map<String,String>

A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

The following extra optional arguments, all lists of Chef recipe names, allow custom Chef recipes to be applied to layer instances at the five different lifecycle events, if custom cookbooks are enabled on the layer's stack:

useEbsOptimizedInstances Boolean
Whether to use EBS-optimized instances.
stackId
This property is required.
Changes to this property will trigger replacement.
string
ID of the stack the layer will belong to.
statsPassword This property is required. string
The password to use for HAProxy stats.
autoAssignElasticIps boolean
Whether to automatically assign an elastic IP address to the layer's instances.
autoAssignPublicIps boolean
For stacks belonging to a VPC, whether to automatically assign a public IP address to each of the layer's instances.
autoHealing boolean
Whether to enable auto-healing for the layer.
cloudwatchConfiguration HaproxyLayerCloudwatchConfiguration
customConfigureRecipes string[]
customDeployRecipes string[]
customInstanceProfileArn string
The ARN of an IAM profile that will be used for the layer's instances.
customJson string
Custom JSON attributes to apply to the layer.
customSecurityGroupIds string[]
Ids for a set of security groups to apply to the layer's instances.
customSetupRecipes string[]
customShutdownRecipes string[]
customUndeployRecipes string[]
drainElbOnShutdown boolean
Whether to enable Elastic Load Balancing connection draining.
ebsVolumes HaproxyLayerEbsVolume[]
ebs_volume blocks, as described below, will each create an EBS volume and connect it to the layer's instances.
elasticLoadBalancer string
Name of an Elastic Load Balancer to attach to this layer
healthcheckMethod string
HTTP method to use for instance healthchecks. Defaults to "OPTIONS".
healthcheckUrl string
URL path to use for instance healthchecks. Defaults to "/".
installUpdatesOnBoot boolean
Whether to install OS and package updates on each instance when it boots.
instanceShutdownTimeout number
The time, in seconds, that OpsWorks will wait for Chef to complete after triggering the Shutdown event.
loadBasedAutoScaling HaproxyLayerLoadBasedAutoScaling
name string
A human-readable name for the layer.
statsEnabled boolean
Whether to enable HAProxy stats.
statsUrl string
The HAProxy stats URL. Defaults to "/haproxy?stats".
statsUser string
The username for HAProxy stats. Defaults to "opsworks".
systemPackages string[]
Names of a set of system packages to install on the layer's instances.
tags {[key: string]: string}

A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

The following extra optional arguments, all lists of Chef recipe names, allow custom Chef recipes to be applied to layer instances at the five different lifecycle events, if custom cookbooks are enabled on the layer's stack:

useEbsOptimizedInstances boolean
Whether to use EBS-optimized instances.
stack_id
This property is required.
Changes to this property will trigger replacement.
str
ID of the stack the layer will belong to.
stats_password This property is required. str
The password to use for HAProxy stats.
auto_assign_elastic_ips bool
Whether to automatically assign an elastic IP address to the layer's instances.
auto_assign_public_ips bool
For stacks belonging to a VPC, whether to automatically assign a public IP address to each of the layer's instances.
auto_healing bool
Whether to enable auto-healing for the layer.
cloudwatch_configuration HaproxyLayerCloudwatchConfigurationArgs
custom_configure_recipes Sequence[str]
custom_deploy_recipes Sequence[str]
custom_instance_profile_arn str
The ARN of an IAM profile that will be used for the layer's instances.
custom_json str
Custom JSON attributes to apply to the layer.
custom_security_group_ids Sequence[str]
Ids for a set of security groups to apply to the layer's instances.
custom_setup_recipes Sequence[str]
custom_shutdown_recipes Sequence[str]
custom_undeploy_recipes Sequence[str]
drain_elb_on_shutdown bool
Whether to enable Elastic Load Balancing connection draining.
ebs_volumes Sequence[HaproxyLayerEbsVolumeArgs]
ebs_volume blocks, as described below, will each create an EBS volume and connect it to the layer's instances.
elastic_load_balancer str
Name of an Elastic Load Balancer to attach to this layer
healthcheck_method str
HTTP method to use for instance healthchecks. Defaults to "OPTIONS".
healthcheck_url str
URL path to use for instance healthchecks. Defaults to "/".
install_updates_on_boot bool
Whether to install OS and package updates on each instance when it boots.
instance_shutdown_timeout int
The time, in seconds, that OpsWorks will wait for Chef to complete after triggering the Shutdown event.
load_based_auto_scaling HaproxyLayerLoadBasedAutoScalingArgs
name str
A human-readable name for the layer.
stats_enabled bool
Whether to enable HAProxy stats.
stats_url str
The HAProxy stats URL. Defaults to "/haproxy?stats".
stats_user str
The username for HAProxy stats. Defaults to "opsworks".
system_packages Sequence[str]
Names of a set of system packages to install on the layer's instances.
tags Mapping[str, str]

A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

The following extra optional arguments, all lists of Chef recipe names, allow custom Chef recipes to be applied to layer instances at the five different lifecycle events, if custom cookbooks are enabled on the layer's stack:

use_ebs_optimized_instances bool
Whether to use EBS-optimized instances.
stackId
This property is required.
Changes to this property will trigger replacement.
String
ID of the stack the layer will belong to.
statsPassword This property is required. String
The password to use for HAProxy stats.
autoAssignElasticIps Boolean
Whether to automatically assign an elastic IP address to the layer's instances.
autoAssignPublicIps Boolean
For stacks belonging to a VPC, whether to automatically assign a public IP address to each of the layer's instances.
autoHealing Boolean
Whether to enable auto-healing for the layer.
cloudwatchConfiguration Property Map
customConfigureRecipes List<String>
customDeployRecipes List<String>
customInstanceProfileArn String
The ARN of an IAM profile that will be used for the layer's instances.
customJson String
Custom JSON attributes to apply to the layer.
customSecurityGroupIds List<String>
Ids for a set of security groups to apply to the layer's instances.
customSetupRecipes List<String>
customShutdownRecipes List<String>
customUndeployRecipes List<String>
drainElbOnShutdown Boolean
Whether to enable Elastic Load Balancing connection draining.
ebsVolumes List<Property Map>
ebs_volume blocks, as described below, will each create an EBS volume and connect it to the layer's instances.
elasticLoadBalancer String
Name of an Elastic Load Balancer to attach to this layer
healthcheckMethod String
HTTP method to use for instance healthchecks. Defaults to "OPTIONS".
healthcheckUrl String
URL path to use for instance healthchecks. Defaults to "/".
installUpdatesOnBoot Boolean
Whether to install OS and package updates on each instance when it boots.
instanceShutdownTimeout Number
The time, in seconds, that OpsWorks will wait for Chef to complete after triggering the Shutdown event.
loadBasedAutoScaling Property Map
name String
A human-readable name for the layer.
statsEnabled Boolean
Whether to enable HAProxy stats.
statsUrl String
The HAProxy stats URL. Defaults to "/haproxy?stats".
statsUser String
The username for HAProxy stats. Defaults to "opsworks".
systemPackages List<String>
Names of a set of system packages to install on the layer's instances.
tags Map<String>

A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

The following extra optional arguments, all lists of Chef recipe names, allow custom Chef recipes to be applied to layer instances at the five different lifecycle events, if custom cookbooks are enabled on the layer's stack:

useEbsOptimizedInstances Boolean
Whether to use EBS-optimized instances.

Outputs

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

Arn string
The Amazon Resource Name(ARN) of the layer.
Id string
The provider-assigned unique ID for this managed resource.
TagsAll Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Arn string
The Amazon Resource Name(ARN) of the layer.
Id string
The provider-assigned unique ID for this managed resource.
TagsAll map[string]string
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
The Amazon Resource Name(ARN) of the layer.
id String
The provider-assigned unique ID for this managed resource.
tagsAll Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn string
The Amazon Resource Name(ARN) of the layer.
id string
The provider-assigned unique ID for this managed resource.
tagsAll {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn str
The Amazon Resource Name(ARN) of the layer.
id str
The provider-assigned unique ID for this managed resource.
tags_all Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
The Amazon Resource Name(ARN) of the layer.
id String
The provider-assigned unique ID for this managed resource.
tagsAll Map<String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Look up Existing HaproxyLayer Resource

Get an existing HaproxyLayer 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?: HaproxyLayerState, opts?: CustomResourceOptions): HaproxyLayer
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arn: Optional[str] = None,
        auto_assign_elastic_ips: Optional[bool] = None,
        auto_assign_public_ips: Optional[bool] = None,
        auto_healing: Optional[bool] = None,
        cloudwatch_configuration: Optional[HaproxyLayerCloudwatchConfigurationArgs] = None,
        custom_configure_recipes: Optional[Sequence[str]] = None,
        custom_deploy_recipes: Optional[Sequence[str]] = None,
        custom_instance_profile_arn: Optional[str] = None,
        custom_json: Optional[str] = None,
        custom_security_group_ids: Optional[Sequence[str]] = None,
        custom_setup_recipes: Optional[Sequence[str]] = None,
        custom_shutdown_recipes: Optional[Sequence[str]] = None,
        custom_undeploy_recipes: Optional[Sequence[str]] = None,
        drain_elb_on_shutdown: Optional[bool] = None,
        ebs_volumes: Optional[Sequence[HaproxyLayerEbsVolumeArgs]] = None,
        elastic_load_balancer: Optional[str] = None,
        healthcheck_method: Optional[str] = None,
        healthcheck_url: Optional[str] = None,
        install_updates_on_boot: Optional[bool] = None,
        instance_shutdown_timeout: Optional[int] = None,
        load_based_auto_scaling: Optional[HaproxyLayerLoadBasedAutoScalingArgs] = None,
        name: Optional[str] = None,
        stack_id: Optional[str] = None,
        stats_enabled: Optional[bool] = None,
        stats_password: Optional[str] = None,
        stats_url: Optional[str] = None,
        stats_user: Optional[str] = None,
        system_packages: Optional[Sequence[str]] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None,
        use_ebs_optimized_instances: Optional[bool] = None) -> HaproxyLayer
func GetHaproxyLayer(ctx *Context, name string, id IDInput, state *HaproxyLayerState, opts ...ResourceOption) (*HaproxyLayer, error)
public static HaproxyLayer Get(string name, Input<string> id, HaproxyLayerState? state, CustomResourceOptions? opts = null)
public static HaproxyLayer get(String name, Output<String> id, HaproxyLayerState state, CustomResourceOptions options)
resources:  _:    type: aws:opsworks:HaproxyLayer    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Arn string
The Amazon Resource Name(ARN) of the layer.
AutoAssignElasticIps bool
Whether to automatically assign an elastic IP address to the layer's instances.
AutoAssignPublicIps bool
For stacks belonging to a VPC, whether to automatically assign a public IP address to each of the layer's instances.
AutoHealing bool
Whether to enable auto-healing for the layer.
CloudwatchConfiguration HaproxyLayerCloudwatchConfiguration
CustomConfigureRecipes List<string>
CustomDeployRecipes List<string>
CustomInstanceProfileArn string
The ARN of an IAM profile that will be used for the layer's instances.
CustomJson string
Custom JSON attributes to apply to the layer.
CustomSecurityGroupIds List<string>
Ids for a set of security groups to apply to the layer's instances.
CustomSetupRecipes List<string>
CustomShutdownRecipes List<string>
CustomUndeployRecipes List<string>
DrainElbOnShutdown bool
Whether to enable Elastic Load Balancing connection draining.
EbsVolumes List<HaproxyLayerEbsVolume>
ebs_volume blocks, as described below, will each create an EBS volume and connect it to the layer's instances.
ElasticLoadBalancer string
Name of an Elastic Load Balancer to attach to this layer
HealthcheckMethod string
HTTP method to use for instance healthchecks. Defaults to "OPTIONS".
HealthcheckUrl string
URL path to use for instance healthchecks. Defaults to "/".
InstallUpdatesOnBoot bool
Whether to install OS and package updates on each instance when it boots.
InstanceShutdownTimeout int
The time, in seconds, that OpsWorks will wait for Chef to complete after triggering the Shutdown event.
LoadBasedAutoScaling HaproxyLayerLoadBasedAutoScaling
Name string
A human-readable name for the layer.
StackId Changes to this property will trigger replacement. string
ID of the stack the layer will belong to.
StatsEnabled bool
Whether to enable HAProxy stats.
StatsPassword string
The password to use for HAProxy stats.
StatsUrl string
The HAProxy stats URL. Defaults to "/haproxy?stats".
StatsUser string
The username for HAProxy stats. Defaults to "opsworks".
SystemPackages List<string>
Names of a set of system packages to install on the layer's instances.
Tags Dictionary<string, string>

A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

The following extra optional arguments, all lists of Chef recipe names, allow custom Chef recipes to be applied to layer instances at the five different lifecycle events, if custom cookbooks are enabled on the layer's stack:

TagsAll Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

UseEbsOptimizedInstances bool
Whether to use EBS-optimized instances.
Arn string
The Amazon Resource Name(ARN) of the layer.
AutoAssignElasticIps bool
Whether to automatically assign an elastic IP address to the layer's instances.
AutoAssignPublicIps bool
For stacks belonging to a VPC, whether to automatically assign a public IP address to each of the layer's instances.
AutoHealing bool
Whether to enable auto-healing for the layer.
CloudwatchConfiguration HaproxyLayerCloudwatchConfigurationArgs
CustomConfigureRecipes []string
CustomDeployRecipes []string
CustomInstanceProfileArn string
The ARN of an IAM profile that will be used for the layer's instances.
CustomJson string
Custom JSON attributes to apply to the layer.
CustomSecurityGroupIds []string
Ids for a set of security groups to apply to the layer's instances.
CustomSetupRecipes []string
CustomShutdownRecipes []string
CustomUndeployRecipes []string
DrainElbOnShutdown bool
Whether to enable Elastic Load Balancing connection draining.
EbsVolumes []HaproxyLayerEbsVolumeArgs
ebs_volume blocks, as described below, will each create an EBS volume and connect it to the layer's instances.
ElasticLoadBalancer string
Name of an Elastic Load Balancer to attach to this layer
HealthcheckMethod string
HTTP method to use for instance healthchecks. Defaults to "OPTIONS".
HealthcheckUrl string
URL path to use for instance healthchecks. Defaults to "/".
InstallUpdatesOnBoot bool
Whether to install OS and package updates on each instance when it boots.
InstanceShutdownTimeout int
The time, in seconds, that OpsWorks will wait for Chef to complete after triggering the Shutdown event.
LoadBasedAutoScaling HaproxyLayerLoadBasedAutoScalingArgs
Name string
A human-readable name for the layer.
StackId Changes to this property will trigger replacement. string
ID of the stack the layer will belong to.
StatsEnabled bool
Whether to enable HAProxy stats.
StatsPassword string
The password to use for HAProxy stats.
StatsUrl string
The HAProxy stats URL. Defaults to "/haproxy?stats".
StatsUser string
The username for HAProxy stats. Defaults to "opsworks".
SystemPackages []string
Names of a set of system packages to install on the layer's instances.
Tags map[string]string

A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

The following extra optional arguments, all lists of Chef recipe names, allow custom Chef recipes to be applied to layer instances at the five different lifecycle events, if custom cookbooks are enabled on the layer's stack:

TagsAll map[string]string
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

UseEbsOptimizedInstances bool
Whether to use EBS-optimized instances.
arn String
The Amazon Resource Name(ARN) of the layer.
autoAssignElasticIps Boolean
Whether to automatically assign an elastic IP address to the layer's instances.
autoAssignPublicIps Boolean
For stacks belonging to a VPC, whether to automatically assign a public IP address to each of the layer's instances.
autoHealing Boolean
Whether to enable auto-healing for the layer.
cloudwatchConfiguration HaproxyLayerCloudwatchConfiguration
customConfigureRecipes List<String>
customDeployRecipes List<String>
customInstanceProfileArn String
The ARN of an IAM profile that will be used for the layer's instances.
customJson String
Custom JSON attributes to apply to the layer.
customSecurityGroupIds List<String>
Ids for a set of security groups to apply to the layer's instances.
customSetupRecipes List<String>
customShutdownRecipes List<String>
customUndeployRecipes List<String>
drainElbOnShutdown Boolean
Whether to enable Elastic Load Balancing connection draining.
ebsVolumes List<HaproxyLayerEbsVolume>
ebs_volume blocks, as described below, will each create an EBS volume and connect it to the layer's instances.
elasticLoadBalancer String
Name of an Elastic Load Balancer to attach to this layer
healthcheckMethod String
HTTP method to use for instance healthchecks. Defaults to "OPTIONS".
healthcheckUrl String
URL path to use for instance healthchecks. Defaults to "/".
installUpdatesOnBoot Boolean
Whether to install OS and package updates on each instance when it boots.
instanceShutdownTimeout Integer
The time, in seconds, that OpsWorks will wait for Chef to complete after triggering the Shutdown event.
loadBasedAutoScaling HaproxyLayerLoadBasedAutoScaling
name String
A human-readable name for the layer.
stackId Changes to this property will trigger replacement. String
ID of the stack the layer will belong to.
statsEnabled Boolean
Whether to enable HAProxy stats.
statsPassword String
The password to use for HAProxy stats.
statsUrl String
The HAProxy stats URL. Defaults to "/haproxy?stats".
statsUser String
The username for HAProxy stats. Defaults to "opsworks".
systemPackages List<String>
Names of a set of system packages to install on the layer's instances.
tags Map<String,String>

A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

The following extra optional arguments, all lists of Chef recipe names, allow custom Chef recipes to be applied to layer instances at the five different lifecycle events, if custom cookbooks are enabled on the layer's stack:

tagsAll Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

useEbsOptimizedInstances Boolean
Whether to use EBS-optimized instances.
arn string
The Amazon Resource Name(ARN) of the layer.
autoAssignElasticIps boolean
Whether to automatically assign an elastic IP address to the layer's instances.
autoAssignPublicIps boolean
For stacks belonging to a VPC, whether to automatically assign a public IP address to each of the layer's instances.
autoHealing boolean
Whether to enable auto-healing for the layer.
cloudwatchConfiguration HaproxyLayerCloudwatchConfiguration
customConfigureRecipes string[]
customDeployRecipes string[]
customInstanceProfileArn string
The ARN of an IAM profile that will be used for the layer's instances.
customJson string
Custom JSON attributes to apply to the layer.
customSecurityGroupIds string[]
Ids for a set of security groups to apply to the layer's instances.
customSetupRecipes string[]
customShutdownRecipes string[]
customUndeployRecipes string[]
drainElbOnShutdown boolean
Whether to enable Elastic Load Balancing connection draining.
ebsVolumes HaproxyLayerEbsVolume[]
ebs_volume blocks, as described below, will each create an EBS volume and connect it to the layer's instances.
elasticLoadBalancer string
Name of an Elastic Load Balancer to attach to this layer
healthcheckMethod string
HTTP method to use for instance healthchecks. Defaults to "OPTIONS".
healthcheckUrl string
URL path to use for instance healthchecks. Defaults to "/".
installUpdatesOnBoot boolean
Whether to install OS and package updates on each instance when it boots.
instanceShutdownTimeout number
The time, in seconds, that OpsWorks will wait for Chef to complete after triggering the Shutdown event.
loadBasedAutoScaling HaproxyLayerLoadBasedAutoScaling
name string
A human-readable name for the layer.
stackId Changes to this property will trigger replacement. string
ID of the stack the layer will belong to.
statsEnabled boolean
Whether to enable HAProxy stats.
statsPassword string
The password to use for HAProxy stats.
statsUrl string
The HAProxy stats URL. Defaults to "/haproxy?stats".
statsUser string
The username for HAProxy stats. Defaults to "opsworks".
systemPackages string[]
Names of a set of system packages to install on the layer's instances.
tags {[key: string]: string}

A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

The following extra optional arguments, all lists of Chef recipe names, allow custom Chef recipes to be applied to layer instances at the five different lifecycle events, if custom cookbooks are enabled on the layer's stack:

tagsAll {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

useEbsOptimizedInstances boolean
Whether to use EBS-optimized instances.
arn str
The Amazon Resource Name(ARN) of the layer.
auto_assign_elastic_ips bool
Whether to automatically assign an elastic IP address to the layer's instances.
auto_assign_public_ips bool
For stacks belonging to a VPC, whether to automatically assign a public IP address to each of the layer's instances.
auto_healing bool
Whether to enable auto-healing for the layer.
cloudwatch_configuration HaproxyLayerCloudwatchConfigurationArgs
custom_configure_recipes Sequence[str]
custom_deploy_recipes Sequence[str]
custom_instance_profile_arn str
The ARN of an IAM profile that will be used for the layer's instances.
custom_json str
Custom JSON attributes to apply to the layer.
custom_security_group_ids Sequence[str]
Ids for a set of security groups to apply to the layer's instances.
custom_setup_recipes Sequence[str]
custom_shutdown_recipes Sequence[str]
custom_undeploy_recipes Sequence[str]
drain_elb_on_shutdown bool
Whether to enable Elastic Load Balancing connection draining.
ebs_volumes Sequence[HaproxyLayerEbsVolumeArgs]
ebs_volume blocks, as described below, will each create an EBS volume and connect it to the layer's instances.
elastic_load_balancer str
Name of an Elastic Load Balancer to attach to this layer
healthcheck_method str
HTTP method to use for instance healthchecks. Defaults to "OPTIONS".
healthcheck_url str
URL path to use for instance healthchecks. Defaults to "/".
install_updates_on_boot bool
Whether to install OS and package updates on each instance when it boots.
instance_shutdown_timeout int
The time, in seconds, that OpsWorks will wait for Chef to complete after triggering the Shutdown event.
load_based_auto_scaling HaproxyLayerLoadBasedAutoScalingArgs
name str
A human-readable name for the layer.
stack_id Changes to this property will trigger replacement. str
ID of the stack the layer will belong to.
stats_enabled bool
Whether to enable HAProxy stats.
stats_password str
The password to use for HAProxy stats.
stats_url str
The HAProxy stats URL. Defaults to "/haproxy?stats".
stats_user str
The username for HAProxy stats. Defaults to "opsworks".
system_packages Sequence[str]
Names of a set of system packages to install on the layer's instances.
tags Mapping[str, str]

A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

The following extra optional arguments, all lists of Chef recipe names, allow custom Chef recipes to be applied to layer instances at the five different lifecycle events, if custom cookbooks are enabled on the layer's stack:

tags_all Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

use_ebs_optimized_instances bool
Whether to use EBS-optimized instances.
arn String
The Amazon Resource Name(ARN) of the layer.
autoAssignElasticIps Boolean
Whether to automatically assign an elastic IP address to the layer's instances.
autoAssignPublicIps Boolean
For stacks belonging to a VPC, whether to automatically assign a public IP address to each of the layer's instances.
autoHealing Boolean
Whether to enable auto-healing for the layer.
cloudwatchConfiguration Property Map
customConfigureRecipes List<String>
customDeployRecipes List<String>
customInstanceProfileArn String
The ARN of an IAM profile that will be used for the layer's instances.
customJson String
Custom JSON attributes to apply to the layer.
customSecurityGroupIds List<String>
Ids for a set of security groups to apply to the layer's instances.
customSetupRecipes List<String>
customShutdownRecipes List<String>
customUndeployRecipes List<String>
drainElbOnShutdown Boolean
Whether to enable Elastic Load Balancing connection draining.
ebsVolumes List<Property Map>
ebs_volume blocks, as described below, will each create an EBS volume and connect it to the layer's instances.
elasticLoadBalancer String
Name of an Elastic Load Balancer to attach to this layer
healthcheckMethod String
HTTP method to use for instance healthchecks. Defaults to "OPTIONS".
healthcheckUrl String
URL path to use for instance healthchecks. Defaults to "/".
installUpdatesOnBoot Boolean
Whether to install OS and package updates on each instance when it boots.
instanceShutdownTimeout Number
The time, in seconds, that OpsWorks will wait for Chef to complete after triggering the Shutdown event.
loadBasedAutoScaling Property Map
name String
A human-readable name for the layer.
stackId Changes to this property will trigger replacement. String
ID of the stack the layer will belong to.
statsEnabled Boolean
Whether to enable HAProxy stats.
statsPassword String
The password to use for HAProxy stats.
statsUrl String
The HAProxy stats URL. Defaults to "/haproxy?stats".
statsUser String
The username for HAProxy stats. Defaults to "opsworks".
systemPackages List<String>
Names of a set of system packages to install on the layer's instances.
tags Map<String>

A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

The following extra optional arguments, all lists of Chef recipe names, allow custom Chef recipes to be applied to layer instances at the five different lifecycle events, if custom cookbooks are enabled on the layer's stack:

tagsAll Map<String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

useEbsOptimizedInstances Boolean
Whether to use EBS-optimized instances.

Supporting Types

HaproxyLayerCloudwatchConfiguration
, HaproxyLayerCloudwatchConfigurationArgs

HaproxyLayerCloudwatchConfigurationLogStream
, HaproxyLayerCloudwatchConfigurationLogStreamArgs

File This property is required. string
LogGroupName This property is required. string
BatchCount int
BatchSize int
BufferDuration int
DatetimeFormat string
Encoding string
FileFingerprintLines string
InitialPosition string
MultilineStartPattern string
TimeZone string
File This property is required. string
LogGroupName This property is required. string
BatchCount int
BatchSize int
BufferDuration int
DatetimeFormat string
Encoding string
FileFingerprintLines string
InitialPosition string
MultilineStartPattern string
TimeZone string
file This property is required. String
logGroupName This property is required. String
batchCount Integer
batchSize Integer
bufferDuration Integer
datetimeFormat String
encoding String
fileFingerprintLines String
initialPosition String
multilineStartPattern String
timeZone String
file This property is required. string
logGroupName This property is required. string
batchCount number
batchSize number
bufferDuration number
datetimeFormat string
encoding string
fileFingerprintLines string
initialPosition string
multilineStartPattern string
timeZone string
file This property is required. str
log_group_name This property is required. str
batch_count int
batch_size int
buffer_duration int
datetime_format str
encoding str
file_fingerprint_lines str
initial_position str
multiline_start_pattern str
time_zone str
file This property is required. String
logGroupName This property is required. String
batchCount Number
batchSize Number
bufferDuration Number
datetimeFormat String
encoding String
fileFingerprintLines String
initialPosition String
multilineStartPattern String
timeZone String

HaproxyLayerEbsVolume
, HaproxyLayerEbsVolumeArgs

MountPoint This property is required. string
The path to mount the EBS volume on the layer's instances.
NumberOfDisks This property is required. int
The number of disks to use for the EBS volume.
Size This property is required. int
The size of the volume in gigabytes.
Encrypted bool
Iops int
For PIOPS volumes, the IOPS per disk.
RaidLevel string
The RAID level to use for the volume.
Type string
The type of volume to create. This may be standard (the default), io1 or gp2.
MountPoint This property is required. string
The path to mount the EBS volume on the layer's instances.
NumberOfDisks This property is required. int
The number of disks to use for the EBS volume.
Size This property is required. int
The size of the volume in gigabytes.
Encrypted bool
Iops int
For PIOPS volumes, the IOPS per disk.
RaidLevel string
The RAID level to use for the volume.
Type string
The type of volume to create. This may be standard (the default), io1 or gp2.
mountPoint This property is required. String
The path to mount the EBS volume on the layer's instances.
numberOfDisks This property is required. Integer
The number of disks to use for the EBS volume.
size This property is required. Integer
The size of the volume in gigabytes.
encrypted Boolean
iops Integer
For PIOPS volumes, the IOPS per disk.
raidLevel String
The RAID level to use for the volume.
type String
The type of volume to create. This may be standard (the default), io1 or gp2.
mountPoint This property is required. string
The path to mount the EBS volume on the layer's instances.
numberOfDisks This property is required. number
The number of disks to use for the EBS volume.
size This property is required. number
The size of the volume in gigabytes.
encrypted boolean
iops number
For PIOPS volumes, the IOPS per disk.
raidLevel string
The RAID level to use for the volume.
type string
The type of volume to create. This may be standard (the default), io1 or gp2.
mount_point This property is required. str
The path to mount the EBS volume on the layer's instances.
number_of_disks This property is required. int
The number of disks to use for the EBS volume.
size This property is required. int
The size of the volume in gigabytes.
encrypted bool
iops int
For PIOPS volumes, the IOPS per disk.
raid_level str
The RAID level to use for the volume.
type str
The type of volume to create. This may be standard (the default), io1 or gp2.
mountPoint This property is required. String
The path to mount the EBS volume on the layer's instances.
numberOfDisks This property is required. Number
The number of disks to use for the EBS volume.
size This property is required. Number
The size of the volume in gigabytes.
encrypted Boolean
iops Number
For PIOPS volumes, the IOPS per disk.
raidLevel String
The RAID level to use for the volume.
type String
The type of volume to create. This may be standard (the default), io1 or gp2.

HaproxyLayerLoadBasedAutoScaling
, HaproxyLayerLoadBasedAutoScalingArgs

HaproxyLayerLoadBasedAutoScalingDownscaling
, HaproxyLayerLoadBasedAutoScalingDownscalingArgs

HaproxyLayerLoadBasedAutoScalingUpscaling
, HaproxyLayerLoadBasedAutoScalingUpscalingArgs

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.