diff --git a/README.md b/README.md index c446738..c465a9a 100644 --- a/README.md +++ b/README.md @@ -133,14 +133,13 @@ Instructions on how to do this are available [here](https://user-guide.cloud-pla | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 1.2.5 | -| [aws](#requirement\_aws) | >= 4.0.0 | | [random](#requirement\_random) | >= 2.0.0 | ## Providers | Name | Version | |------|---------| -| [aws](#provider\_aws) | >= 4.0.0 | +| [aws](#provider\_aws) | n/a | | [random](#provider\_random) | >= 2.0.0 | ## Modules diff --git a/examples/main.tf b/examples/main.tf index b64be2a..65d154c 100644 --- a/examples/main.tf +++ b/examples/main.tf @@ -1,3 +1,3 @@ provider "aws" { region = "eu-west-2" -} +} \ No newline at end of file diff --git a/outputs.tf b/outputs.tf index fac0500..1574416 100644 --- a/outputs.tf +++ b/outputs.tf @@ -15,7 +15,7 @@ output "rds_instance_port" { output "database_name" { description = "Name of the database" - value = aws_db_instance.rds.name + value = aws_db_instance.rds.db_name } output "database_username" { diff --git a/versions.tf b/versions.tf index c4395a2..7676570 100644 --- a/versions.tf +++ b/versions.tf @@ -2,8 +2,7 @@ terraform { required_version = ">= 1.2.5" required_providers { aws = { - source = "hashicorp/aws" - version = ">= 4.0.0" + source = "hashicorp/aws" } random = { source = "hashicorp/random"