Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ and for new clusters, you use either the Amazon ECS console, or the AWS CLI.

. In the navigation pane, choose * Account Settings*.

. To enable the Container Insights default opt-in, check the box at the bottom of the page.
. To enable the Container Insights (or Container Insights with enhanced observability) default opt-in, check the box at the bottom of the page.


* CLI Command*
Expand All @@ -61,7 +61,7 @@ To do so, enter the following command.
----
aws ecs put-account-setting
--name "containerInsights"
--value "enabled"
--value "enabled" # OR "enhanced"
----
////

Expand All @@ -82,7 +82,7 @@ resource "aws_ecs_cluster" "foo" {
name = "white-hart"
+ setting {
+ name = "containerInsights"
+ value = "enabled"
+ value = "enabled" # OR "enhanced"
+ }
}
----
Expand All @@ -104,5 +104,5 @@ Resources:
...
+ ClusterSettings:
+ - Name: 'containerInsights'
+ Value: 'enabled'
+ Value: 'enabled' # OR 'enhanced'
----