`hashicorp/aws` deprecated `name` in the now released version v6.0.0 so`terraform apply` breaks workaround: add this block to top of main.tf files: ``` terraform { required_providers { aws = { source = "hashicorp/aws" version = "<6" } } } ```