_This issue was originally opened by @nabeken as hashicorp/terraform#13483. It was migrated here as part of the provider split. The original body of the issue is below._
I open a new issue because it's a case which described in https://github.com/hashicorp/terraform/pull/13024#issuecomment-292308243
Probably 0.9.2
It looks like resource_aws_opsworks_stack has been patched in 0.9.2.
Except resource_aws_opsworks_stack resources should go to a endpoint where a stack lives too.
Only resource_aws_opsworks_stack go to a endpoint where it lives.
@catsby is this fix far from being released? just trying to establish if we need to find a workaround... :smile:
Friendly reminder: us Opsworks users are stuck on Terraform 0.8.8 due to this bug.
@jdirwin any updates on this, I saw you closed your fork. I am working on a fix addressing other issues, but I wonder if you managed to get around this.
Cheers
To anyone stuck on this, one way to go around this is to: https://www.terraform.io/docs/configuration/providers.html
add a provider in us-east-1
provider "aws" {
alias = "america"
region = "us-east-1"
}
on your opsworks layers, opsworks instances , opsworks custom layers etc...
resource "aws_opsworks_instance" "abcdef" {
provider = "aws.america"
...
...
}
Marking this issue as stale due to inactivity. This helps our maintainers find and focus on the active issues. If this issue receives no comments in the next 30 days it will automatically be closed. Maintainers can also remove the stale label.
If this issue was automatically closed and you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thank you!
I'm going to lock this issue because it has been closed for _30 days_ โณ. This helps our maintainers find and focus on the active issues.
If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks!
Most helpful comment
@catsby is this fix far from being released? just trying to establish if we need to find a workaround... :smile: