1. Packages
  2. AWS Classic
  3. API Docs
  4. opsworks
  5. RailsAppLayer

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.32.0 published on Friday, Apr 19, 2024 by Pulumi

aws.opsworks.RailsAppLayer

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.32.0 published on Friday, Apr 19, 2024 by Pulumi

    Provides an OpsWorks Ruby on Rails application layer resource.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const app = new aws.opsworks.RailsAppLayer("app", {stackId: main.id});
    
    import pulumi
    import pulumi_aws as aws
    
    app = aws.opsworks.RailsAppLayer("app", stack_id=main["id"])
    
    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.NewRailsAppLayer(ctx, "app", &opsworks.RailsAppLayerArgs{
    			StackId: pulumi.Any(main.Id),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var app = new Aws.OpsWorks.RailsAppLayer("app", new()
        {
            StackId = main.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.opsworks.RailsAppLayer;
    import com.pulumi.aws.opsworks.RailsAppLayerArgs;
    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 app = new RailsAppLayer("app", RailsAppLayerArgs.builder()        
                .stackId(main.id())
                .build());
    
        }
    }
    
    resources:
      app:
        type: aws:opsworks:RailsAppLayer
        properties:
          stackId: ${main.id}
    

    Create RailsAppLayer Resource

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

    Constructor syntax

    new RailsAppLayer(name: string, args: RailsAppLayerArgs, opts?: CustomResourceOptions);
    @overload
    def RailsAppLayer(resource_name: str,
                      args: RailsAppLayerArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def RailsAppLayer(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      stack_id: Optional[str] = None,
                      drain_elb_on_shutdown: Optional[bool] = None,
                      system_packages: Optional[Sequence[str]] = None,
                      auto_healing: Optional[bool] = None,
                      bundler_version: Optional[str] = None,
                      cloudwatch_configuration: Optional[RailsAppLayerCloudwatchConfigurationArgs] = 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,
                      use_ebs_optimized_instances: Optional[bool] = None,
                      auto_assign_public_ips: Optional[bool] = None,
                      load_based_auto_scaling: Optional[RailsAppLayerLoadBasedAutoScalingArgs] = None,
                      elastic_load_balancer: Optional[str] = None,
                      install_updates_on_boot: Optional[bool] = None,
                      instance_shutdown_timeout: Optional[int] = None,
                      ebs_volumes: Optional[Sequence[RailsAppLayerEbsVolumeArgs]] = None,
                      manage_bundler: Optional[bool] = None,
                      name: Optional[str] = None,
                      passenger_version: Optional[str] = None,
                      ruby_version: Optional[str] = None,
                      rubygems_version: Optional[str] = None,
                      auto_assign_elastic_ips: Optional[bool] = None,
                      app_server: Optional[str] = None,
                      tags: Optional[Mapping[str, str]] = None,
                      custom_undeploy_recipes: Optional[Sequence[str]] = None)
    func NewRailsAppLayer(ctx *Context, name string, args RailsAppLayerArgs, opts ...ResourceOption) (*RailsAppLayer, error)
    public RailsAppLayer(string name, RailsAppLayerArgs args, CustomResourceOptions? opts = null)
    public RailsAppLayer(String name, RailsAppLayerArgs args)
    public RailsAppLayer(String name, RailsAppLayerArgs args, CustomResourceOptions options)
    
    type: aws:opsworks:RailsAppLayer
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

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

    Example

    The following reference example uses placeholder values for all input properties.

    var railsAppLayerResource = new Aws.OpsWorks.RailsAppLayer("railsAppLayerResource", new()
    {
        StackId = "string",
        DrainElbOnShutdown = false,
        SystemPackages = new[]
        {
            "string",
        },
        AutoHealing = false,
        BundlerVersion = "string",
        CloudwatchConfiguration = new Aws.OpsWorks.Inputs.RailsAppLayerCloudwatchConfigurationArgs
        {
            Enabled = false,
            LogStreams = new[]
            {
                new Aws.OpsWorks.Inputs.RailsAppLayerCloudwatchConfigurationLogStreamArgs
                {
                    File = "string",
                    LogGroupName = "string",
                    BatchCount = 0,
                    BatchSize = 0,
                    BufferDuration = 0,
                    DatetimeFormat = "string",
                    Encoding = "string",
                    FileFingerprintLines = "string",
                    InitialPosition = "string",
                    MultilineStartPattern = "string",
                    TimeZone = "string",
                },
            },
        },
        CustomConfigureRecipes = new[]
        {
            "string",
        },
        CustomDeployRecipes = new[]
        {
            "string",
        },
        CustomInstanceProfileArn = "string",
        CustomJson = "string",
        CustomSecurityGroupIds = new[]
        {
            "string",
        },
        CustomSetupRecipes = new[]
        {
            "string",
        },
        CustomShutdownRecipes = new[]
        {
            "string",
        },
        UseEbsOptimizedInstances = false,
        AutoAssignPublicIps = false,
        LoadBasedAutoScaling = new Aws.OpsWorks.Inputs.RailsAppLayerLoadBasedAutoScalingArgs
        {
            Downscaling = new Aws.OpsWorks.Inputs.RailsAppLayerLoadBasedAutoScalingDownscalingArgs
            {
                Alarms = new[]
                {
                    "string",
                },
                CpuThreshold = 0,
                IgnoreMetricsTime = 0,
                InstanceCount = 0,
                LoadThreshold = 0,
                MemoryThreshold = 0,
                ThresholdsWaitTime = 0,
            },
            Enable = false,
            Upscaling = new Aws.OpsWorks.Inputs.RailsAppLayerLoadBasedAutoScalingUpscalingArgs
            {
                Alarms = new[]
                {
                    "string",
                },
                CpuThreshold = 0,
                IgnoreMetricsTime = 0,
                InstanceCount = 0,
                LoadThreshold = 0,
                MemoryThreshold = 0,
                ThresholdsWaitTime = 0,
            },
        },
        ElasticLoadBalancer = "string",
        InstallUpdatesOnBoot = false,
        InstanceShutdownTimeout = 0,
        EbsVolumes = new[]
        {
            new Aws.OpsWorks.Inputs.RailsAppLayerEbsVolumeArgs
            {
                MountPoint = "string",
                NumberOfDisks = 0,
                Size = 0,
                Encrypted = false,
                Iops = 0,
                RaidLevel = "string",
                Type = "string",
            },
        },
        ManageBundler = false,
        Name = "string",
        PassengerVersion = "string",
        RubyVersion = "string",
        RubygemsVersion = "string",
        AutoAssignElasticIps = false,
        AppServer = "string",
        Tags = 
        {
            { "string", "string" },
        },
        CustomUndeployRecipes = new[]
        {
            "string",
        },
    });
    
    example, err := opsworks.NewRailsAppLayer(ctx, "railsAppLayerResource", &opsworks.RailsAppLayerArgs{
    	StackId:            pulumi.String("string"),
    	DrainElbOnShutdown: pulumi.Bool(false),
    	SystemPackages: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	AutoHealing:    pulumi.Bool(false),
    	BundlerVersion: pulumi.String("string"),
    	CloudwatchConfiguration: &opsworks.RailsAppLayerCloudwatchConfigurationArgs{
    		Enabled: pulumi.Bool(false),
    		LogStreams: opsworks.RailsAppLayerCloudwatchConfigurationLogStreamArray{
    			&opsworks.RailsAppLayerCloudwatchConfigurationLogStreamArgs{
    				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"),
    			},
    		},
    	},
    	CustomConfigureRecipes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	CustomDeployRecipes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	CustomInstanceProfileArn: pulumi.String("string"),
    	CustomJson:               pulumi.String("string"),
    	CustomSecurityGroupIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	CustomSetupRecipes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	CustomShutdownRecipes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	UseEbsOptimizedInstances: pulumi.Bool(false),
    	AutoAssignPublicIps:      pulumi.Bool(false),
    	LoadBasedAutoScaling: &opsworks.RailsAppLayerLoadBasedAutoScalingArgs{
    		Downscaling: &opsworks.RailsAppLayerLoadBasedAutoScalingDownscalingArgs{
    			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.RailsAppLayerLoadBasedAutoScalingUpscalingArgs{
    			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),
    		},
    	},
    	ElasticLoadBalancer:     pulumi.String("string"),
    	InstallUpdatesOnBoot:    pulumi.Bool(false),
    	InstanceShutdownTimeout: pulumi.Int(0),
    	EbsVolumes: opsworks.RailsAppLayerEbsVolumeArray{
    		&opsworks.RailsAppLayerEbsVolumeArgs{
    			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"),
    		},
    	},
    	ManageBundler:        pulumi.Bool(false),
    	Name:                 pulumi.String("string"),
    	PassengerVersion:     pulumi.String("string"),
    	RubyVersion:          pulumi.String("string"),
    	RubygemsVersion:      pulumi.String("string"),
    	AutoAssignElasticIps: pulumi.Bool(false),
    	AppServer:            pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	CustomUndeployRecipes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var railsAppLayerResource = new RailsAppLayer("railsAppLayerResource", RailsAppLayerArgs.builder()        
        .stackId("string")
        .drainElbOnShutdown(false)
        .systemPackages("string")
        .autoHealing(false)
        .bundlerVersion("string")
        .cloudwatchConfiguration(RailsAppLayerCloudwatchConfigurationArgs.builder()
            .enabled(false)
            .logStreams(RailsAppLayerCloudwatchConfigurationLogStreamArgs.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())
        .customConfigureRecipes("string")
        .customDeployRecipes("string")
        .customInstanceProfileArn("string")
        .customJson("string")
        .customSecurityGroupIds("string")
        .customSetupRecipes("string")
        .customShutdownRecipes("string")
        .useEbsOptimizedInstances(false)
        .autoAssignPublicIps(false)
        .loadBasedAutoScaling(RailsAppLayerLoadBasedAutoScalingArgs.builder()
            .downscaling(RailsAppLayerLoadBasedAutoScalingDownscalingArgs.builder()
                .alarms("string")
                .cpuThreshold(0)
                .ignoreMetricsTime(0)
                .instanceCount(0)
                .loadThreshold(0)
                .memoryThreshold(0)
                .thresholdsWaitTime(0)
                .build())
            .enable(false)
            .upscaling(RailsAppLayerLoadBasedAutoScalingUpscalingArgs.builder()
                .alarms("string")
                .cpuThreshold(0)
                .ignoreMetricsTime(0)
                .instanceCount(0)
                .loadThreshold(0)
                .memoryThreshold(0)
                .thresholdsWaitTime(0)
                .build())
            .build())
        .elasticLoadBalancer("string")
        .installUpdatesOnBoot(false)
        .instanceShutdownTimeout(0)
        .ebsVolumes(RailsAppLayerEbsVolumeArgs.builder()
            .mountPoint("string")
            .numberOfDisks(0)
            .size(0)
            .encrypted(false)
            .iops(0)
            .raidLevel("string")
            .type("string")
            .build())
        .manageBundler(false)
        .name("string")
        .passengerVersion("string")
        .rubyVersion("string")
        .rubygemsVersion("string")
        .autoAssignElasticIps(false)
        .appServer("string")
        .tags(Map.of("string", "string"))
        .customUndeployRecipes("string")
        .build());
    
    rails_app_layer_resource = aws.opsworks.RailsAppLayer("railsAppLayerResource",
        stack_id="string",
        drain_elb_on_shutdown=False,
        system_packages=["string"],
        auto_healing=False,
        bundler_version="string",
        cloudwatch_configuration=aws.opsworks.RailsAppLayerCloudwatchConfigurationArgs(
            enabled=False,
            log_streams=[aws.opsworks.RailsAppLayerCloudwatchConfigurationLogStreamArgs(
                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",
            )],
        ),
        custom_configure_recipes=["string"],
        custom_deploy_recipes=["string"],
        custom_instance_profile_arn="string",
        custom_json="string",
        custom_security_group_ids=["string"],
        custom_setup_recipes=["string"],
        custom_shutdown_recipes=["string"],
        use_ebs_optimized_instances=False,
        auto_assign_public_ips=False,
        load_based_auto_scaling=aws.opsworks.RailsAppLayerLoadBasedAutoScalingArgs(
            downscaling=aws.opsworks.RailsAppLayerLoadBasedAutoScalingDownscalingArgs(
                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=aws.opsworks.RailsAppLayerLoadBasedAutoScalingUpscalingArgs(
                alarms=["string"],
                cpu_threshold=0,
                ignore_metrics_time=0,
                instance_count=0,
                load_threshold=0,
                memory_threshold=0,
                thresholds_wait_time=0,
            ),
        ),
        elastic_load_balancer="string",
        install_updates_on_boot=False,
        instance_shutdown_timeout=0,
        ebs_volumes=[aws.opsworks.RailsAppLayerEbsVolumeArgs(
            mount_point="string",
            number_of_disks=0,
            size=0,
            encrypted=False,
            iops=0,
            raid_level="string",
            type="string",
        )],
        manage_bundler=False,
        name="string",
        passenger_version="string",
        ruby_version="string",
        rubygems_version="string",
        auto_assign_elastic_ips=False,
        app_server="string",
        tags={
            "string": "string",
        },
        custom_undeploy_recipes=["string"])
    
    const railsAppLayerResource = new aws.opsworks.RailsAppLayer("railsAppLayerResource", {
        stackId: "string",
        drainElbOnShutdown: false,
        systemPackages: ["string"],
        autoHealing: false,
        bundlerVersion: "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",
            }],
        },
        customConfigureRecipes: ["string"],
        customDeployRecipes: ["string"],
        customInstanceProfileArn: "string",
        customJson: "string",
        customSecurityGroupIds: ["string"],
        customSetupRecipes: ["string"],
        customShutdownRecipes: ["string"],
        useEbsOptimizedInstances: false,
        autoAssignPublicIps: false,
        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,
            },
        },
        elasticLoadBalancer: "string",
        installUpdatesOnBoot: false,
        instanceShutdownTimeout: 0,
        ebsVolumes: [{
            mountPoint: "string",
            numberOfDisks: 0,
            size: 0,
            encrypted: false,
            iops: 0,
            raidLevel: "string",
            type: "string",
        }],
        manageBundler: false,
        name: "string",
        passengerVersion: "string",
        rubyVersion: "string",
        rubygemsVersion: "string",
        autoAssignElasticIps: false,
        appServer: "string",
        tags: {
            string: "string",
        },
        customUndeployRecipes: ["string"],
    });
    
    type: aws:opsworks:RailsAppLayer
    properties:
        appServer: string
        autoAssignElasticIps: false
        autoAssignPublicIps: false
        autoHealing: false
        bundlerVersion: string
        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
        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
        manageBundler: false
        name: string
        passengerVersion: string
        rubyVersion: string
        rubygemsVersion: string
        stackId: string
        systemPackages:
            - string
        tags:
            string: string
        useEbsOptimizedInstances: false
    

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

    StackId string
    ID of the stack the layer will belong to.
    AppServer string
    Keyword for the app server to use. Defaults to "apache_passenger".
    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.
    BundlerVersion string
    When OpsWorks is managing Bundler, which version to use. Defaults to "1.5.3".
    CloudwatchConfiguration RailsAppLayerCloudwatchConfiguration
    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<RailsAppLayerEbsVolume>
    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
    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 RailsAppLayerLoadBasedAutoScaling
    ManageBundler bool
    Whether OpsWorks should manage bundler. On by default.
    Name string
    A human-readable name for the layer.
    PassengerVersion string
    The version of Passenger to use. Defaults to "4.0.46".
    RubyVersion string
    The version of Ruby to use. Defaults to "2.0.0".
    RubygemsVersion string
    The version of RubyGems to use. Defaults to "2.2.2".
    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 string
    ID of the stack the layer will belong to.
    AppServer string
    Keyword for the app server to use. Defaults to "apache_passenger".
    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.
    BundlerVersion string
    When OpsWorks is managing Bundler, which version to use. Defaults to "1.5.3".
    CloudwatchConfiguration RailsAppLayerCloudwatchConfigurationArgs
    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 []RailsAppLayerEbsVolumeArgs
    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
    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 RailsAppLayerLoadBasedAutoScalingArgs
    ManageBundler bool
    Whether OpsWorks should manage bundler. On by default.
    Name string
    A human-readable name for the layer.
    PassengerVersion string
    The version of Passenger to use. Defaults to "4.0.46".
    RubyVersion string
    The version of Ruby to use. Defaults to "2.0.0".
    RubygemsVersion string
    The version of RubyGems to use. Defaults to "2.2.2".
    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 String
    ID of the stack the layer will belong to.
    appServer String
    Keyword for the app server to use. Defaults to "apache_passenger".
    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.
    bundlerVersion String
    When OpsWorks is managing Bundler, which version to use. Defaults to "1.5.3".
    cloudwatchConfiguration RailsAppLayerCloudwatchConfiguration
    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<RailsAppLayerEbsVolume>
    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
    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 RailsAppLayerLoadBasedAutoScaling
    manageBundler Boolean
    Whether OpsWorks should manage bundler. On by default.
    name String
    A human-readable name for the layer.
    passengerVersion String
    The version of Passenger to use. Defaults to "4.0.46".
    rubyVersion String
    The version of Ruby to use. Defaults to "2.0.0".
    rubygemsVersion String
    The version of RubyGems to use. Defaults to "2.2.2".
    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 string
    ID of the stack the layer will belong to.
    appServer string
    Keyword for the app server to use. Defaults to "apache_passenger".
    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.
    bundlerVersion string
    When OpsWorks is managing Bundler, which version to use. Defaults to "1.5.3".
    cloudwatchConfiguration RailsAppLayerCloudwatchConfiguration
    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 RailsAppLayerEbsVolume[]
    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
    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 RailsAppLayerLoadBasedAutoScaling
    manageBundler boolean
    Whether OpsWorks should manage bundler. On by default.
    name string
    A human-readable name for the layer.
    passengerVersion string
    The version of Passenger to use. Defaults to "4.0.46".
    rubyVersion string
    The version of Ruby to use. Defaults to "2.0.0".
    rubygemsVersion string
    The version of RubyGems to use. Defaults to "2.2.2".
    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 str
    ID of the stack the layer will belong to.
    app_server str
    Keyword for the app server to use. Defaults to "apache_passenger".
    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.
    bundler_version str
    When OpsWorks is managing Bundler, which version to use. Defaults to "1.5.3".
    cloudwatch_configuration RailsAppLayerCloudwatchConfigurationArgs
    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[RailsAppLayerEbsVolumeArgs]
    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
    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 RailsAppLayerLoadBasedAutoScalingArgs
    manage_bundler bool
    Whether OpsWorks should manage bundler. On by default.
    name str
    A human-readable name for the layer.
    passenger_version str
    The version of Passenger to use. Defaults to "4.0.46".
    ruby_version str
    The version of Ruby to use. Defaults to "2.0.0".
    rubygems_version str
    The version of RubyGems to use. Defaults to "2.2.2".
    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 String
    ID of the stack the layer will belong to.
    appServer String
    Keyword for the app server to use. Defaults to "apache_passenger".
    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.
    bundlerVersion String
    When OpsWorks is managing Bundler, which version to use. Defaults to "1.5.3".
    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
    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
    manageBundler Boolean
    Whether OpsWorks should manage bundler. On by default.
    name String
    A human-readable name for the layer.
    passengerVersion String
    The version of Passenger to use. Defaults to "4.0.46".
    rubyVersion String
    The version of Ruby to use. Defaults to "2.0.0".
    rubygemsVersion String
    The version of RubyGems to use. Defaults to "2.2.2".
    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 RailsAppLayer 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 RailsAppLayer Resource

    Get an existing RailsAppLayer 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?: RailsAppLayerState, opts?: CustomResourceOptions): RailsAppLayer
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            app_server: Optional[str] = None,
            arn: Optional[str] = None,
            auto_assign_elastic_ips: Optional[bool] = None,
            auto_assign_public_ips: Optional[bool] = None,
            auto_healing: Optional[bool] = None,
            bundler_version: Optional[str] = None,
            cloudwatch_configuration: Optional[RailsAppLayerCloudwatchConfigurationArgs] = 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[RailsAppLayerEbsVolumeArgs]] = None,
            elastic_load_balancer: Optional[str] = None,
            install_updates_on_boot: Optional[bool] = None,
            instance_shutdown_timeout: Optional[int] = None,
            load_based_auto_scaling: Optional[RailsAppLayerLoadBasedAutoScalingArgs] = None,
            manage_bundler: Optional[bool] = None,
            name: Optional[str] = None,
            passenger_version: Optional[str] = None,
            ruby_version: Optional[str] = None,
            rubygems_version: Optional[str] = None,
            stack_id: 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) -> RailsAppLayer
    func GetRailsAppLayer(ctx *Context, name string, id IDInput, state *RailsAppLayerState, opts ...ResourceOption) (*RailsAppLayer, error)
    public static RailsAppLayer Get(string name, Input<string> id, RailsAppLayerState? state, CustomResourceOptions? opts = null)
    public static RailsAppLayer get(String name, Output<String> id, RailsAppLayerState 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:
    AppServer string
    Keyword for the app server to use. Defaults to "apache_passenger".
    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.
    BundlerVersion string
    When OpsWorks is managing Bundler, which version to use. Defaults to "1.5.3".
    CloudwatchConfiguration RailsAppLayerCloudwatchConfiguration
    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<RailsAppLayerEbsVolume>
    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
    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 RailsAppLayerLoadBasedAutoScaling
    ManageBundler bool
    Whether OpsWorks should manage bundler. On by default.
    Name string
    A human-readable name for the layer.
    PassengerVersion string
    The version of Passenger to use. Defaults to "4.0.46".
    RubyVersion string
    The version of Ruby to use. Defaults to "2.0.0".
    RubygemsVersion string
    The version of RubyGems to use. Defaults to "2.2.2".
    StackId string
    ID of the stack the layer will belong to.
    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.
    AppServer string
    Keyword for the app server to use. Defaults to "apache_passenger".
    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.
    BundlerVersion string
    When OpsWorks is managing Bundler, which version to use. Defaults to "1.5.3".
    CloudwatchConfiguration RailsAppLayerCloudwatchConfigurationArgs
    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 []RailsAppLayerEbsVolumeArgs
    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
    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 RailsAppLayerLoadBasedAutoScalingArgs
    ManageBundler bool
    Whether OpsWorks should manage bundler. On by default.
    Name string
    A human-readable name for the layer.
    PassengerVersion string
    The version of Passenger to use. Defaults to "4.0.46".
    RubyVersion string
    The version of Ruby to use. Defaults to "2.0.0".
    RubygemsVersion string
    The version of RubyGems to use. Defaults to "2.2.2".
    StackId string
    ID of the stack the layer will belong to.
    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.
    appServer String
    Keyword for the app server to use. Defaults to "apache_passenger".
    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.
    bundlerVersion String
    When OpsWorks is managing Bundler, which version to use. Defaults to "1.5.3".
    cloudwatchConfiguration RailsAppLayerCloudwatchConfiguration
    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<RailsAppLayerEbsVolume>
    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
    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 RailsAppLayerLoadBasedAutoScaling
    manageBundler Boolean
    Whether OpsWorks should manage bundler. On by default.
    name String
    A human-readable name for the layer.
    passengerVersion String
    The version of Passenger to use. Defaults to "4.0.46".
    rubyVersion String
    The version of Ruby to use. Defaults to "2.0.0".
    rubygemsVersion String
    The version of RubyGems to use. Defaults to "2.2.2".
    stackId String
    ID of the stack the layer will belong to.
    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.
    appServer string
    Keyword for the app server to use. Defaults to "apache_passenger".
    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.
    bundlerVersion string
    When OpsWorks is managing Bundler, which version to use. Defaults to "1.5.3".
    cloudwatchConfiguration RailsAppLayerCloudwatchConfiguration
    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 RailsAppLayerEbsVolume[]
    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
    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 RailsAppLayerLoadBasedAutoScaling
    manageBundler boolean
    Whether OpsWorks should manage bundler. On by default.
    name string
    A human-readable name for the layer.
    passengerVersion string
    The version of Passenger to use. Defaults to "4.0.46".
    rubyVersion string
    The version of Ruby to use. Defaults to "2.0.0".
    rubygemsVersion string
    The version of RubyGems to use. Defaults to "2.2.2".
    stackId string
    ID of the stack the layer will belong to.
    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.
    app_server str
    Keyword for the app server to use. Defaults to "apache_passenger".
    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.
    bundler_version str
    When OpsWorks is managing Bundler, which version to use. Defaults to "1.5.3".
    cloudwatch_configuration RailsAppLayerCloudwatchConfigurationArgs
    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[RailsAppLayerEbsVolumeArgs]
    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
    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 RailsAppLayerLoadBasedAutoScalingArgs
    manage_bundler bool
    Whether OpsWorks should manage bundler. On by default.
    name str
    A human-readable name for the layer.
    passenger_version str
    The version of Passenger to use. Defaults to "4.0.46".
    ruby_version str
    The version of Ruby to use. Defaults to "2.0.0".
    rubygems_version str
    The version of RubyGems to use. Defaults to "2.2.2".
    stack_id str
    ID of the stack the layer will belong to.
    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.
    appServer String
    Keyword for the app server to use. Defaults to "apache_passenger".
    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.
    bundlerVersion String
    When OpsWorks is managing Bundler, which version to use. Defaults to "1.5.3".
    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
    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
    manageBundler Boolean
    Whether OpsWorks should manage bundler. On by default.
    name String
    A human-readable name for the layer.
    passengerVersion String
    The version of Passenger to use. Defaults to "4.0.46".
    rubyVersion String
    The version of Ruby to use. Defaults to "2.0.0".
    rubygemsVersion String
    The version of RubyGems to use. Defaults to "2.2.2".
    stackId String
    ID of the stack the layer will belong to.
    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

    RailsAppLayerCloudwatchConfiguration, RailsAppLayerCloudwatchConfigurationArgs

    RailsAppLayerCloudwatchConfigurationLogStream, RailsAppLayerCloudwatchConfigurationLogStreamArgs

    RailsAppLayerEbsVolume, RailsAppLayerEbsVolumeArgs

    MountPoint string
    The path to mount the EBS volume on the layer's instances.
    NumberOfDisks int
    The number of disks to use for the EBS volume.
    Size 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 string
    The path to mount the EBS volume on the layer's instances.
    NumberOfDisks int
    The number of disks to use for the EBS volume.
    Size 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 String
    The path to mount the EBS volume on the layer's instances.
    numberOfDisks Integer
    The number of disks to use for the EBS volume.
    size 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 string
    The path to mount the EBS volume on the layer's instances.
    numberOfDisks number
    The number of disks to use for the EBS volume.
    size 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 str
    The path to mount the EBS volume on the layer's instances.
    number_of_disks int
    The number of disks to use for the EBS volume.
    size 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 String
    The path to mount the EBS volume on the layer's instances.
    numberOfDisks Number
    The number of disks to use for the EBS volume.
    size 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.

    RailsAppLayerLoadBasedAutoScaling, RailsAppLayerLoadBasedAutoScalingArgs

    RailsAppLayerLoadBasedAutoScalingDownscaling, RailsAppLayerLoadBasedAutoScalingDownscalingArgs

    RailsAppLayerLoadBasedAutoScalingUpscaling, RailsAppLayerLoadBasedAutoScalingUpscalingArgs

    Package Details

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

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.32.0 published on Friday, Apr 19, 2024 by Pulumi