Skip to content

Commit

Permalink
Merge pull request #4903 from NikkeiFTLearning/b-aws_route53_zone-cnt…
Browse files Browse the repository at this point in the history
…-fix

aws route53 zone cnt fix
  • Loading branch information
bflad committed Jun 22, 2018
2 parents 0aea6f1 + c14d167 commit 325f5a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/resource_aws_route53_zone.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func resourceAwsRoute53ZoneCreate(d *schema.ResourceData, meta interface{}) erro
req := &route53.CreateHostedZoneInput{
Name: aws.String(d.Get("name").(string)),
HostedZoneConfig: &route53.HostedZoneConfig{Comment: aws.String(d.Get("comment").(string))},
CallerReference: aws.String(d.Get("name").(string) + time.Now().Format(time.RFC3339Nano)),
CallerReference: aws.String(resource.UniqueId()),
}
if v := d.Get("vpc_id"); v != "" {
req.VPC = &route53.VPC{
Expand Down

0 comments on commit 325f5a6

Please sign in to comment.