We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22ea9fd commit a5d5d53Copy full SHA for a5d5d53
.gitignore
@@ -3,3 +3,4 @@ terraform.tfstate*
3
.terraform*
4
examples/terraform.tfstate*
5
examples/.terraform*
6
+.infracost/
main.tf
@@ -1,5 +1,5 @@
1
locals {
2
- tags = {
+ default_tags = {
Name = "gitlab-shell-runner"
ManagedBy = "Terraform"
}
@@ -20,7 +20,7 @@ resource "aws_key_pair" "this" {
20
public_key = var.ssh_public_key
21
22
tags = merge(
23
- local.tags,
+ local.default_tags,
24
var.additional_tags,
25
)
26
@@ -37,7 +37,7 @@ resource "aws_instance" "this" {
37
user_data_replace_on_change = true
38
39
40
41
42
43
0 commit comments