Skip to content

Commit

Permalink
added tagging
Browse files Browse the repository at this point in the history
  • Loading branch information
skyfox675 committed May 2, 2021
1 parent 27daa81 commit 2d6cb71
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
resource "aws_route53_zone" "this" {
name = var.domain_name
tags = var.tags
}

resource "aws_route53_key_signing_key" "this" {
Expand Down
6 changes: 6 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -85,3 +85,9 @@ variable "protonmail3_domainkey" {
default = ""
type = string
}

variable "tags" {
description = "Tags to apply to tag-able resources"
default = {}
type = map(string)
}

0 comments on commit 2d6cb71

Please sign in to comment.