diff --git a/pkg/providers/aws/route53.go b/pkg/providers/aws/route53.go index 5f62f13..4da564d 100644 --- a/pkg/providers/aws/route53.go +++ b/pkg/providers/aws/route53.go @@ -36,7 +36,7 @@ func (d *route53Provider) GetResource(ctx context.Context) (*schema.Resources, e list.Merge(items) } if aws.BoolValue(zoneOutput.IsTruncated) && *zoneOutput.NextMarker != "" { - req.SetMarker(*zoneOutput.Marker) + req.SetMarker(*zoneOutput.NextMarker) } else { return list, nil }