Skip to content

Commit

Permalink
Update deprecated field name
Browse files Browse the repository at this point in the history
```
╷
│ Warning: Argument is deprecated
│
│   with module.hasura.aws_db_instance.hasura,
│   on .terraform/modules/hasura/main.tf line 180, in resource "aws_db_instance" "hasura":
│  180:   name                   = var.rds_db_name
│
│ Use db_name instead
│
│ (and 2 more similar warnings elsewhere)
```
  • Loading branch information
mvanlonden authored and Rayraegah committed Oct 21, 2022
1 parent e650f34 commit c300b31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ resource "aws_db_subnet_group" "hasura" {
}

resource "aws_db_instance" "hasura" {
name = var.rds_db_name
db_name = var.rds_db_name
identifier = "hasura"
username = var.rds_username
password = var.rds_password
Expand Down

0 comments on commit c300b31

Please sign in to comment.