when using aws.ecs.cluster, for settings, only Con...
# aws
b
when using aws.ecs.cluster, for settings, only ContainerInsights is apparently a valid value. How do I deploy by default with Container Insights with enhanced observability turned on instead?
m
Does this work @bland-painting-33593:
Copy code
import * as aws from "@pulumi/aws";

const cluster = new aws.ecs.Cluster("app", {
  settings: [{ name: "containerInsights", value: "enhanced" }],
});
https://www.pulumi.com/registry/packages/aws/api-docs/ecs/cluster/
b
Oh, I totally overlooked that. I'm sure that'll be it. Thanks!
🙌 1