Advertisement
Guest User

Untitled

a guest
May 4th, 2016
591
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. ---
  2. name: microbosh
  3.  
  4. logging:
  5. level: DEBUG
  6.  
  7. network:
  8. type: manual
  9. vip: REDACTED
  10. ip: 10.10.0.20
  11. dns:
  12. - 10.10.0.2
  13. cloud_properties:
  14. subnet: REDACTED
  15.  
  16. resources:
  17. persistent_disk: 20000
  18. cloud_properties:
  19. instance_type: t2.medium
  20. availability_zone: us-east-1a
  21.  
  22. cloud:
  23. plugin: aws
  24. properties:
  25. aws: &aws
  26. access_key_id: REDACTED
  27. secret_access_key: REDACTED
  28. region: us-east-1
  29. default_key_name: bosh
  30. default_security_groups: ["bosh"]
  31. ec2_private_key: ~/.ssh/id_rsa_bosh
  32.  
  33. agent:
  34. ntp: &ntp
  35. - 0.pool.ntp.org
  36. - 1.pool.ntp.org
  37.  
  38. apply_spec:
  39. agent:
  40. blobstore:
  41. address: 10.10.0.20
  42.  
  43. nats:
  44. address: 10.10.0.20
  45.  
  46. properties:
  47. ntp: *ntp
  48.  
  49. registry:
  50. address: 10.10.0.20
  51.  
  52. dns:
  53. recursor: 208.67.220.220
  54.  
  55. hm:
  56. resurrector_enabled: false
  57. director_account:
  58. user: hm
  59. password: REDACTED
  60.  
  61. agent: { mbus: "nats://nats:nats@10.10.0.20:4222" }
  62.  
  63. aws: *aws
  64.  
  65. director:
  66. enable_snapshots: true
  67. ssl:
  68. key: |
  69. -----BEGIN RSA PRIVATE KEY-----
  70. REDACTED
  71. -----END RSA PRIVATE KEY-----
  72. cert: |
  73. -----BEGIN CERTIFICATE-----
  74. REDACTED
  75. -----END CERTIFICATE-----
  76.  
  77. user_management:
  78. provider: local
  79. local:
  80. users:
  81. - { name: admin, password: REDACTED }
  82. - { name: hm, password: REDACTED }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement