You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -288,6 +288,9 @@ Available targets:
288
288
| launch\_template\_name | The name (not ID) of a custom launch template to use for the EKS node group. If provided, it must specify the AMI image id. |`string`|`null`| no |
289
289
| launch\_template\_version | The version of the specified launch template to use. Defaults to latest version. |`string`|`null`| no |
290
290
| max\_size | Maximum number of worker nodes |`number`| n/a | yes |
291
+
| metadata\_http\_endpoint | Whether the metadata service is available. Can be enabled or disabled |`string`|`"enabled"`| no |
292
+
| metadata\_http\_put\_response\_hop\_limit | The desired HTTP PUT response hop limit for instance metadata requests. The larger the number, the further instance metadata requests can travel. Can be an integer from 1 to 64 |`number`|`2`| no |
293
+
| metadata\_http\_tokens | Whether or not the metadata service requires session tokens, also referred to as Instance Metadata Service Version 2 (IMDSv2). Can be optional or required |`string`|`"optional"`| no |
291
294
| min\_size | Minimum number of worker nodes |`number`| n/a | yes |
292
295
| module\_depends\_on | Can be any value desired. Module will wait for this value to be computed before creating node group. |`any`|`null`| no |
293
296
| name | Solution name, e.g. 'app' or 'jenkins' |`string`|`null`| no |
Copy file name to clipboardExpand all lines: docs/terraform.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -82,6 +82,9 @@
82
82
| launch\_template\_name | The name (not ID) of a custom launch template to use for the EKS node group. If provided, it must specify the AMI image id. |`string`|`null`| no |
83
83
| launch\_template\_version | The version of the specified launch template to use. Defaults to latest version. |`string`|`null`| no |
84
84
| max\_size | Maximum number of worker nodes |`number`| n/a | yes |
85
+
| metadata\_http\_endpoint | Whether the metadata service is available. Can be enabled or disabled |`string`|`"enabled"`| no |
86
+
| metadata\_http\_put\_response\_hop\_limit | The desired HTTP PUT response hop limit for instance metadata requests. The larger the number, the further instance metadata requests can travel. Can be an integer from 1 to 64 |`number`|`2`| no |
87
+
| metadata\_http\_tokens | Whether or not the metadata service requires session tokens, also referred to as Instance Metadata Service Version 2 (IMDSv2). Can be optional or required |`string`|`"optional"`| no |
85
88
| min\_size | Minimum number of worker nodes |`number`| n/a | yes |
86
89
| module\_depends\_on | Can be any value desired. Module will wait for this value to be computed before creating node group. |`any`|`null`| no |
87
90
| name | Solution name, e.g. 'app' or 'jenkins' |`string`|`null`| no |
description="Custom KMS Key ID to encrypt EBS volumes on EC2 instances, applicable only if `launch_template_disk_encryption_enabled` is set to true"
280
280
}
281
281
282
+
variable"metadata_http_put_response_hop_limit" {
283
+
default=2
284
+
type=number
285
+
description="The desired HTTP PUT response hop limit for instance metadata requests. The larger the number, the further instance metadata requests can travel. Can be an integer from 1 to 64"
286
+
}
287
+
288
+
variable"metadata_http_endpoint" {
289
+
default="enabled"
290
+
type=string
291
+
description="Whether the metadata service is available. Can be enabled or disabled"
292
+
}
293
+
294
+
variable"metadata_http_tokens" {
295
+
default="optional"
296
+
type=string
297
+
description="Whether or not the metadata service requires session tokens, also referred to as Instance Metadata Service Version 2 (IMDSv2). Can be optional or required"
0 commit comments