Skip to content

Commit

Permalink
chore: 🤖 bump and pin provider version, fix output syntax
Browse files Browse the repository at this point in the history
chore: 🤖 remove aws provider refs

chore: 🤖 restore required_provider, but do not set version

chore: 🤖 restore example provider block
  • Loading branch information
sj-williams committed Nov 29, 2024
1 parent 658a5b8 commit 9f8b068
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/main.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
provider "aws" {
region = "eu-west-2"
}
}
2 changes: 1 addition & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down
3 changes: 1 addition & 2 deletions versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 9f8b068

Please sign in to comment.