Guest User

Untitled

a guest
Apr 24th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. Description: Crear registros DNS
  2. Parameters:
  3.  
  4. VPC:
  5. Description: ID de la VPC
  6. Type: String
  7.  
  8. DHCP:
  9. Description: IP de DHCP
  10. Type: String
  11.  
  12. Resources:
  13. HostedZone:
  14. Type: AWS::Route53::HostedZone
  15. Properties:
  16. Name: domain.corp.
  17. VPCs:
  18. - VPCId: !Ref VPC
  19. VPCRegion: us-east-1
  20.  
  21. RecordSet1:
  22. Type: AWS::Route53::RecordSet
  23. DependsOn: HostedZone
  24. Properties:
  25. HostedZoneName: domain.corp.
  26. Name: core.domain.corp.
  27. Type: NS
  28. TTL: '172800'
  29. ResourceRecords:
  30. - !Ref DHCP
Add Comment
Please, Sign In to add comment