profiles.yml 985 B

1234567891011121314151617181920212223242526272829303132333435
  1. # Copyright Materialize, Inc. and contributors. All rights reserved.
  2. #
  3. # Use of this software is governed by the Business Source License
  4. # included in the LICENSE file at the root of this repository.
  5. #
  6. # As of the Change Date specified in that file, in accordance with
  7. # the Business Source License, use of this software will be governed
  8. # by the Apache License, Version 2.0.
  9. canary_environment:
  10. outputs:
  11. prod:
  12. type: materialize
  13. threads: 1
  14. host: "{{ env_var('MATERIALIZE_PROD_SANDBOX_HOSTNAME') }}"
  15. port: 6875
  16. user: "{{ env_var('MATERIALIZE_PROD_SANDBOX_USERNAME') }}"
  17. password: "{{env_var('MATERIALIZE_PROD_SANDBOX_APP_PASSWORD')}}"
  18. dbname: qa_canary_environment
  19. schema: public
  20. autocommit: True
  21. dev:
  22. type: materialize
  23. threads: 1
  24. host: materialized
  25. port: 6875
  26. user: materialize
  27. pass: materialize
  28. dbname: materialize
  29. schema: public
  30. autocommit: True
  31. target: prod