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: example.tfvars
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,12 @@
1
-
aws_region="eu-central-1"
1
+
aws_region="eu-east-1"
2
2
3
3
# Used for naming related resources
4
4
cluster_name="my-minikube"
5
5
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
+15-3Lines changed: 15 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,22 @@
1
1
variable"aws_region" {
2
2
description="Region where Cloud Formation is created"
3
-
default="eu-central-1"
3
+
default="eu-east-1"
4
4
}
5
5
6
-
variable"cluster_name" {
7
-
description="Name of the AWS Minikube cluster - will be used to name all created resources"
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."
8
+
}
9
+
10
+
variable"search_tag_key" {
11
+
description="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."
12
+
}
13
+
14
+
variable"search_tag_value" {
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
+
}
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."
0 commit comments