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
{{ message }}
This repository was archived by the owner on Dec 29, 2021. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,8 +31,8 @@ The configuration is done through Terraform variables. Example *tfvars* file is
31
31
32
32
| Option | Explanation | Example |
33
33
|--------|-------------|---------|
34
-
|`aws_region`| AWS region which should be used |`eu-central-1`|
35
-
|`name`|Name of the Kubernetes cluster (used to find the resources for tagging but also to name resources created by this configuration) |`my-minikube`|
34
+
|`aws_region`| AWS region which should be used |`eu-east-1`|
35
+
|`lambda_name`|Will be used to name the tagging lambda, its roles etc. |`my-k8s`|
36
36
|`search_tag_key`| The Key of the tag which determines resources belonging to the application. All resources with matching tag and its value will be tagged with additional tags. |`kubernetes.io/cluster/aws-k8s`|
37
37
|`search_tag_value`| The Valur of the tag which determines resources belonging to the application. All resources with matching tag and its value will be tagged with additional tags. |`owned`|
38
38
|`tags`| Tags which should be applied to all resources |`{ Hello = "World" }`|
Copy file name to clipboardExpand all lines: example.tfvars
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
aws_region="eu-east-1"
2
2
3
3
# Used for naming related resources
4
-
name="my-k8s"
4
+
lambda_name="my-k8s"
5
5
6
6
# The Key of the tag which determines resources belonging to the application. All resources with matching tag and its value will be tagged with additional tags.
Copy file name to clipboardExpand all lines: variables.tf
+2-6Lines changed: 2 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -3,8 +3,8 @@ variable "aws_region" {
3
3
default="eu-east-1"
4
4
}
5
5
6
-
variable"name" {
7
-
description="Name of the installation we are tagging - will be used to name all resources unless they already have a `Name` tag."
6
+
variable"lambda_name" {
7
+
description="Will be used to name the tagging lambda, its roles etc."
8
8
}
9
9
10
10
variable"search_tag_key" {
@@ -15,10 +15,6 @@ variable "search_tag_value" {
15
15
description="The Valur of the tag which determines resources belonging to the application. All resources with matching tag and its value will be tagged with additional tags."
16
16
}
17
17
18
-
variable"name" {
19
-
description="Name of the installation we are tagging - will be used to name all resources unless they already have a `Name` tag."
20
-
}
21
-
22
18
variable"tags" {
23
19
description="Tags used for the AWS resources created by this template"
0 commit comments