driftctl/pkg/resource/aws/aws_route53_zone_ext.go

13 lines
186 B
Go

package aws
import (
"fmt"
)
func (r *AwsRoute53Zone) String() string {
if r.Name == nil {
return r.TerraformId()
}
return fmt.Sprintf("%s (Id: %s)", *r.Name, r.TerraformId())
}