We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa95d64 commit 23fbc31Copy full SHA for 23fbc31
assets/tests/main.tf
@@ -6,18 +6,21 @@ terraform {
6
}
7
8
9
+locals {
10
+ default_tags = {
11
+ Environment = "test"
12
+ Owner = "primait"
13
+ Project = "nuvola"
14
+ }
15
+}
16
+
17
provider "aws" {
18
access_key = "test"
19
secret_key = "test"
20
region = "eu-west-1"
21
default_tags {
- tags = {
- Environment = "test"
- Owner = "primait"
- Project = "nuvola"
- }
22
+ tags = local.default_tags
23
-
24
25
26
@@ -26,11 +29,7 @@ provider "aws" {
29
region = "us-east-1"
27
30
alias = "us_east_1"
28
31
32
33
34
35
36
0 commit comments