Skip to content

Commit

Permalink
Merge pull request #11 from opzkit/aws-provider-4.x
Browse files Browse the repository at this point in the history
feat: update to AWS-provider 4.x
  • Loading branch information
argoyle authored Mar 20, 2022
2 parents f2e904f + 095f8d8 commit 21d1370
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ resource "aws_db_instance" "default" {
max_allocated_storage = 60
skip_final_snapshot = var.skip_final_snapshot
identifier = var.identifier
name = var.db_name
db_name = var.db_name
username = var.master_username
password = local.password
monitoring_interval = var.enhanced_monitoring ? 60 : 0
Expand Down
8 changes: 8 additions & 0 deletions providers.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.0"
}
}
}

0 comments on commit 21d1370

Please sign in to comment.