Guest User

Untitled

a guest
Jul 18th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. "OpenVPNCloudFront" : {
  2. "Type" : "AWS::CloudFront::Distribution",
  3. "Properties": {
  4. "DistributionConfig" : {
  5. "Origins" : [ {
  6. "DomainName" : {
  7. "Fn::Join" : [ "", [
  8. {"Ref" : "AWS::StackName"}, ".",
  9. {"Ref" : "HostedZone"}
  10. ] ]
  11. },
  12. "Id" : "OpenVPNCF",
  13. "CustomOriginConfig" : {
  14. "HTTPSPort" : "443",
  15. "OriginProtocolPolicy" : "https-only"
  16. }
  17. } ],
  18. "Enabled" : "true",
  19. "Aliases" : [{"Ref" : "DomainName"} ],
  20. },
  21. "ViewerCertificate": { "CloudFrontDefaultCertificate" : "true" }
  22. }
  23. },
  24. More JSON here
Add Comment
Please, Sign In to add comment