We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9efa3fa commit 9ab6b71Copy full SHA for 9ab6b71
modules/eks/main.tf
@@ -79,14 +79,22 @@ module "eks" {
79
"workload" = "materialize-instance"
80
}
81
82
+ enable_bootstrap_user_data = true
83
bootstrap_extra_args = <<-TOML
84
[settings.bootstrap-containers.disk-setup]
- source = "public.ecr.aws/amazonlinux/amazonlinux:2"
85
mode = "once"
86
essential = true
87
user-data = "${local.disk_setup_user_data}"
88
TOML
89
90
+ # Simpler test to see if the user data is being applied
91
+ # bootstrap_extra_args = <<-TOML
92
+ # [settings.bootstrap-containers.disk-setup]
93
+ # mode = "once"
94
+ # essential = true
95
+ # user-data = "${base64encode("#!/bin/bash\necho 'Simple test' > /tmp/test.log")}"
96
+ # TOML
97
+
98
99
100
0 commit comments