Ganglia Layer
    Provides an OpsWorks Ganglia layer resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const monitor = new aws.opsworks.GangliaLayer("monitor", {
    stackId: main.id,
    password: "foobarbaz",
});Content copied to clipboard
import pulumi
import pulumi_aws as aws
monitor = aws.opsworks.GangliaLayer("monitor",
    stack_id=main["id"],
    password="foobarbaz")Content copied to clipboard
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
    var monitor = new Aws.OpsWorks.GangliaLayer("monitor", new()
    {
        StackId = main.Id,
        Password = "foobarbaz",
    });
});Content copied to clipboard
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.NewGangliaLayer(ctx, "monitor", &opsworks.GangliaLayerArgs{
			StackId:  pulumi.Any(main.Id),
			Password: pulumi.String("foobarbaz"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.opsworks.GangliaLayer;
import com.pulumi.aws.opsworks.GangliaLayerArgs;
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 monitor = new GangliaLayer("monitor", GangliaLayerArgs.builder()
            .stackId(main.id())
            .password("foobarbaz")
            .build());
    }
}Content copied to clipboard
resources:
  monitor:
    type: aws:opsworks:GangliaLayer
    properties:
      stackId: ${main.id}
      password: foobarbazContent copied to clipboard
Properties
Link copied to clipboard
                Link copied to clipboard
                Link copied to clipboard
                Link copied to clipboard
                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:
Link copied to clipboard