Advertisement
Guest User

Untitled

a guest
Dec 9th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. example.com
  2.  
  3. build.example.com
  4.  
  5. ClusterHostedZone:
  6. Type: "AWS::Route53::HostedZone"
  7. Properties:
  8. Name: !Ref DomainName
  9. HostedZoneConfig:
  10. Comment: Managed by Cloud Formation
  11. HostedZoneTags:
  12. - Key: KubernetesCluster
  13. Value: !Ref KubernetesCluster
  14.  
  15. ParentHostedZoneClusterRecord:
  16. Type: "AWS::Route53::RecordSet"
  17. Properties:
  18. Name: !Ref DomainName
  19. Comment: Managed by Cloud Formation
  20. HostedZoneId: !Ref ParentHostedZoneID
  21. TTL: 30
  22. Type: NS
  23. ResourceRecords: !GetAtt ClusterHostedZone.NameServers
  24.  
  25. ResourceRecords: !GetAtt ClusterHostedZone.NameServers
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement