mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
provider/aws: Update state on aws_elasticache_subnet_group
not found exception
Fixes #7062 make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccAWSElasticacheSubnetGroup' ==> Checking that code complies with gofmt requirements... go generate $(go list ./... | grep -v /vendor/) TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAWSElasticacheSubnetGroup -timeout 120m === RUN TestAccAWSElasticacheSubnetGroup_basic --- PASS: TestAccAWSElasticacheSubnetGroup_basic (44.62s) === RUN TestAccAWSElasticacheSubnetGroup_update --- PASS: TestAccAWSElasticacheSubnetGroup_update (73.74s) PASS ok github.com/hashicorp/terraform/builtin/providers/aws 118.379s
This commit is contained in:
parent
ac2d195cc5
commit
2a09941f76
@ -87,6 +87,11 @@ func resourceAwsElasticacheSubnetGroupRead(d *schema.ResourceData, meta interfac
|
|||||||
|
|
||||||
res, err := conn.DescribeCacheSubnetGroups(req)
|
res, err := conn.DescribeCacheSubnetGroups(req)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
if ec2err, ok := err.(awserr.Error); ok && ec2err.Code() == "CacheSubnetGroupNotFoundFault" {
|
||||||
|
// Update state to indicate the db subnet no longer exists.
|
||||||
|
d.SetId("")
|
||||||
|
return nil
|
||||||
|
}
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if len(res.CacheSubnetGroups) == 0 {
|
if len(res.CacheSubnetGroups) == 0 {
|
||||||
|
Loading…
Reference in New Issue
Block a user