OSDN Git Service

adds the ['concourse-ci']['docker-compose']['web_encryption_key_vault_item'] attribut...
[metasearch/grid-chef-repo.git] / cookbooks / concourse-ci / templates / default / opt / docker-compose / app / concourse / .env
1 <%
2 # Note in this file:
3 #  - Do not use quatation marks (' or ").
4 #  - Do not use variable reference.
5 -%>
6 POSTGRES_PASSWORD=<%= @db_passwd %>
7 <% unless @encryption_key.nil? %>
8 CONCOURSE_ENCRYPTION_KEY=<%= @encryption_key %>
9 <% end %>
10 CONCOURSE_BASIC_AUTH_PASSWORD=<%= @basic_auth_passwd %>
11 <% unless @oauth_client_id.nil? %>
12 CONCOURSE_GENERIC_OAUTH_CLIENT_ID=<%= @oauth_client_id %>
13 <% end %>
14 <% unless @oauth_client_secret.nil? %>
15 CONCOURSE_GENERIC_OAUTH_CLIENT_SECRET=<%= @oauth_client_secret %>
16 <% end %>