Skip to content

Commit

Permalink
feat: Add missed tags (#50)
Browse files Browse the repository at this point in the history
* feat: Add missed tags

* Update outputs.tf
  • Loading branch information
MaxymVlasov authored Aug 7, 2024
1 parent 458a140 commit fd29fa7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 4 additions & 2 deletions examples/complete/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
output "guardduty_detector" {
value = module.guardduty.guardduty_detector
description = "GuardDuty detector"
value = module.guardduty.guardduty_detector
}
output "sns_topic" {
value = module.guardduty.sns_topic
description = "SNS topic"
value = module.guardduty.sns_topic
}
2 changes: 2 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ resource "aws_guardduty_detector" "guardduty" {
enable = var.s3_protection_enabled
}
}

tags = module.this.tags
}

#-----------------------------------------------------------------------------------------------------------------------
Expand Down

0 comments on commit fd29fa7

Please sign in to comment.