Guest User

Untitled

a guest
Feb 5th, 2019
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. {
  2. "MyRedshiftMasterUserPassword": {
  3. "value": "Abcd2019",
  4. "type": "SecureString"
  5. }
  6. }
  7.  
  8. Resources
  9. Redshift:
  10. Type: 'AWS::Redshift::Cluster'
  11. Properties:
  12. NodeType: dc2.large
  13. NumberOfNodes: !Ref RedshiftNodes
  14. ClusterType: multi-node
  15. AutomatedSnapshotRetentionPeriod: !Ref AutomatedSnapshotRetentionPeriod
  16. DBName: datawarehouse_v1
  17. MasterUsername: !Ref RedshiftMasterUsername
  18. MasterUserPassword: '{{resolve:ssm-secure:MyRedshiftMasterUserPassword:1}}'
  19.  
  20. For clear text, the password must meet the following constraints:
  21.  
  22. * It must be 8 to 64 characters in length.
  23. * It must contain at least one uppercase letter, one lowercase letter, and one number.
  24. * It can use any printable ASCII characters (ASCII code 33 to 126) except ' (single quote), " (double quote), :, , /, @, or space
Add Comment
Please, Sign In to add comment