generated from terraform-modules/template_aws_submodules
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from terraform-modules/compat-tf-0.13
update for tf 0.13, add info to readm
- Loading branch information
Showing
9 changed files
with
151 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| formatter: markdown table | ||
|
|
||
| header-from: main.tf | ||
| footer-from: "" | ||
|
|
||
| sections: | ||
| ## hide: [] | ||
| show: | ||
| - data-sources | ||
| - header | ||
| - footer | ||
| - inputs | ||
| - modules | ||
| - outputs | ||
| - providers | ||
| - requirements | ||
| - resources | ||
|
|
||
| output: | ||
| file: README.md | ||
| mode: replace | ||
| # mode: inject | ||
| # template: |- | ||
| # <!-- BEGIN_TF_DOCS --> | ||
| # {{ .Content }} | ||
| # <!-- END_TF_DOCS --> | ||
|
|
||
| ## output-values: | ||
| ## enabled: false | ||
| ## from: "" | ||
| ## | ||
| ## sort: | ||
| ## enabled: true | ||
| ## by: name | ||
| ## | ||
| ## settings: | ||
| ## anchor: true | ||
| ## color: true | ||
| ## default: true | ||
| ## description: false | ||
| ## escape: true | ||
| ## indent: 2 | ||
| ## required: true | ||
| ## sensitive: true | ||
| ## type: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,13 @@ | ||
| # Versions | ||
|
|
||
| ## Version 1.x | ||
|
|
||
| * v1.0.0 -- 2021-10-14 | ||
| - patch-aws-auth module creation | ||
|
|
||
| ## Version 2.x | ||
|
|
||
| * v2.0.0 -- 20211223 | ||
| - add providers for tf 0.13+ | ||
|
|
||
|
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| # aws-eks | ||
|
|
||
| This contains a list of submodules used for building an EKS cluster. There are also some examples which can be used | ||
| as a starting point for building a cluster. | ||
|
|
||
| * Submodules | ||
| * [patch-aws-auth](#patch-aws-auth): update `aws-auth ConfigMap` | ||
|
|
||
| * Submodules Planned | ||
| * dns-zone: add DNS zone for cluster | ||
| * efs: Setup EFS Driver, policies and roles | ||
| * cluster-iam-policies: Setup needed IAM policies for cluster | ||
| * cluster-iam-roles: Setup needed IAM roles for cluster (in conjuniction with policies) | ||
| * irsa-role: Setup IAM Role for Service Account | ||
| * cluster-role: Setup cluster roles (depends upon a created irsa-role) | ||
| * common-services, most likely split into a module for each of the common services | ||
|
|
||
| * Examples | ||
| * [established-cluster-examples](#established-cluster-examples) | ||
| * [full-cluster](#full-cluster) | ||
|
|
||
| # Submodules | ||
| ## [patch-aws-auth](patch-aws-auth/) | ||
|
|
||
| This submodule allows for an easy patching of the `aws-auth ConfigMap`, which is used to map IAM users and roles to specific | ||
| Kubernetes groups, roles, and cluster roles. | ||
|
|
||
| # Examples | ||
|
|
||
| ## [established-cluster-examples](examples/established-cluster-examples/) | ||
|
|
||
| * [alb-controller](examples/established-cluster-examples/alb-controller) | ||
| * [dnsutils](examples/established-cluster-examples/dnsutils) | ||
| * [empty](examples/established-cluster-examples/empty) | ||
| * [kube-bench](examples/established-cluster-examples/kube-bench) | ||
| * [sample-alb](examples/established-cluster-examples/sample-alb) | ||
| * [sample-elb](examples/established-cluster-examples/sample-elb) | ||
| * [sample-istio](examples/established-cluster-examples/sample-istio) | ||
| * [sample-nlb](examples/established-cluster-examples/sample-nlb) | ||
|
|
||
| ## [full-cluster](examples/full-cluster/) | ||
|
|
||
|
|
||
|
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| locals { | ||
| _module_version = "1.0.0" | ||
| _module_version = "2.0.0" | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| terraform { | ||
| required_providers { | ||
| aws = { | ||
| source = "hashicorp/aws" | ||
| version = ">= 3.66.0" | ||
| } | ||
| helm = { | ||
| source = "hashicorp/helm" | ||
| version = ">= 2.4" | ||
| } | ||
| http = { | ||
| source = "hashicorp/http" | ||
| version = ">= 2.1" | ||
| } | ||
| kubernetes = { | ||
| source = "hashicorp/kubernetes" | ||
| version = ">= 2.7" | ||
| } | ||
| null = { | ||
| source = "hashicorp/null" | ||
| version = ">= 3.1" | ||
| } | ||
| tls = { | ||
| source = "hashicorp/tls" | ||
| version = ">= 3.1" | ||
| } | ||
| } | ||
| # required_version = ">= 0.13" | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| ../common/version.tf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| terraform { | ||
| required_providers { | ||
| null = { | ||
| source = "hashicorp/null" | ||
| version = ">= 3.1" | ||
| } | ||
| } | ||
| # required_version = ">= 0.13" | ||
| } |