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
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -212,6 +212,7 @@ Available targets:
212
212
| kubernetes_version | Kubernetes version. Defaults to EKS Cluster Kubernetes version. Terraform will only perform drift detection if a configuration value is provided | string |`null`| no |
213
213
| max_size | Maximum number of worker nodes | number | - | yes |
214
214
| min_size | Minimum number of worker nodes | number | - | yes |
215
+
| module_depends_on | Can be any value desired. Module will wait for this value to be computed before creating node group. | any |`null`| no |
215
216
| name | Solution name, e.g. 'app' or 'cluster' | string | - | yes |
216
217
| namespace | Namespace, which could be your organization name, e.g. 'eg' or 'cp' | string | `` | no |
217
218
| source_security_group_ids | Set of EC2 Security Group IDs to allow SSH access (port 22) from on the worker nodes. If you specify `ec2_ssh_key`, but do not specify this configuration when you create an EKS Node Group, port 22 on the worker nodes is opened to the Internet (0.0.0.0/0) | list(string) |`<list>`| no |
@@ -292,6 +293,10 @@ We deliver 10x the value for a fraction of the cost of a full-time engineer. Our
292
293
293
294
Join our [Open Source Community][slack] on Slack. It's **FREE** for everyone! Our "SweetOps" community is where you get to talk with others who share a similar vision for how to rollout and manage infrastructure. This is the best place to talk shop, ask questions, solicit feedback, and work together as a community to build totally *sweet* infrastructure.
294
295
296
+
## Discourse Forums
297
+
298
+
Participate in our [Discourse Forums][discourse]. Here you'll find answers to commonly asked questions. Most questions will be related to the enormous number of projects we support on our GitHub. Come here to collaborate on answers, find solutions, and get ideas about the products and services we value. It only takes a minute to get started! Just sign in with SSO using your GitHub account.
299
+
295
300
## Newsletter
296
301
297
302
Sign up for [our newsletter][newsletter] that covers everything on our technology radar. Receive updates on what we're up to on GitHub as well as awesome new projects we discover.
@@ -405,6 +410,7 @@ Check out [our other projects][github], [follow us on twitter][twitter], [apply
Copy file name to clipboardExpand all lines: docs/terraform.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,7 @@
19
19
| kubernetes_version | Kubernetes version. Defaults to EKS Cluster Kubernetes version. Terraform will only perform drift detection if a configuration value is provided | string |`null`| no |
20
20
| max_size | Maximum number of worker nodes | number | - | yes |
21
21
| min_size | Minimum number of worker nodes | number | - | yes |
22
+
| module_depends_on | Can be any value desired. Module will wait for this value to be computed before creating node group. | any |`null`| no |
22
23
| name | Solution name, e.g. 'app' or 'cluster' | string | - | yes |
23
24
| namespace | Namespace, which could be your organization name, e.g. 'eg' or 'cp' | string | `` | no |
24
25
| source_security_group_ids | Set of EC2 Security Group IDs to allow SSH access (port 22) from on the worker nodes. If you specify `ec2_ssh_key`, but do not specify this configuration when you create an EKS Node Group, port 22 on the worker nodes is opened to the Internet (0.0.0.0/0) | list(string) |`<list>`| no |
description="Set of EC2 Security Group IDs to allow SSH access (port 22) from on the worker nodes. If you specify `ec2_ssh_key`, but do not specify this configuration when you create an EKS Node Group, port 22 on the worker nodes is opened to the Internet (0.0.0.0/0)"
130
130
}
131
+
132
+
variable"module_depends_on" {
133
+
type=any
134
+
default=null
135
+
description="Can be any value desired. Module will wait for this value to be computed before creating node group."
0 commit comments