hashicorp / terraform-provider-awscc

Terraform AWS Cloud Control provider
https://registry.terraform.io/providers/hashicorp/awscc/latest/docs
Mozilla Public License 2.0
240 stars 107 forks source link

Custom service endpoint configuration #1830

Open wellsiau-aws opened 2 weeks ago

wellsiau-aws commented 2 weeks ago

Community Note

Description

Similar to AWS Standard provider, I think it will be useful to have custom service endpoint configuration.

This will allow us to perform test for newly added resources / features ahead of the general availability of the resources schema in the registry.

New or Affected Resource(s)

Potential Terraform Configuration

provider "awscc" {
  # ... potentially other provider configuration ...

  endpoints {
    dynamodb = "http://localhost:4569"
    s3       = "http://localhost:4572"
  }
}

References

wellsiau-aws commented 1 week ago

@Drewtul is working on it!