Skip to content

Commit

Permalink
fix: add required_provider on secret module (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
elsebasan authored Jun 4, 2024
1 parent 56f30e1 commit 871d28d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions aws/secrets/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
terraform {
required_version = ">= 1.0.0"

required_providers {
aws = {
source = "hashicorp/aws"
}
}
}


resource "aws_secretsmanager_secret" "secret" {
name = "${var.name}"
description = "Secrets for ${var.name}"
Expand Down

0 comments on commit 871d28d

Please sign in to comment.