Skip to content

Commit c300b31

Browse files
mvanlondenRayraegah
authored andcommitted
Update deprecated field name
``` ╷ │ 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) ```
1 parent e650f34 commit c300b31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ resource "aws_db_subnet_group" "hasura" {
177177
}
178178

179179
resource "aws_db_instance" "hasura" {
180-
name = var.rds_db_name
180+
db_name = var.rds_db_name
181181
identifier = "hasura"
182182
username = var.rds_username
183183
password = var.rds_password

0 commit comments

Comments
 (0)