You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This results in Terraform being unable to create the resource because no VPC ID has been specified:
│ Error: creating Security Group (retool-prod-temporal-rds-security-group): VPCIdNotSpecified: No default VPC for this user
│ status code: 400, request id: c448adb9-ac28-4e14-84ed-5450130d1e6a
│
│ with module.retool.aws_security_group.temporal_aurora[0],
│ on .terraform/modules/retool/modules/aws_ecs/security.tf line 26, in resource "aws_security_group" "temporal_aurora":
│ 26: resource "aws_security_group" "temporal_aurora" {
If you look at the aws_security_group resource immediately following this one, the vpc_id argument is present:
The
aws_security_group.temporal_aurora
resource defined below is missing thevpc_id
argument:terraform-retool-modules/modules/aws_ecs/security.tf
Line 26 in 664d281
This results in Terraform being unable to create the resource because no VPC ID has been specified:
If you look at the
aws_security_group
resource immediately following this one, thevpc_id
argument is present:terraform-retool-modules/modules/aws_ecs/security.tf
Line 41 in 664d281
I believe you just need to add the following to the
aws_security_group.temporal_aurora
resource to resolve the problem:vpc_id = var.vpc_id
Thank you.
The text was updated successfully, but these errors were encountered: