27 lines
1.5 KiB
Text
27 lines
1.5 KiB
Text
- save_endpoint = local_assigns.fetch(:save_endpoint, nil)
|
|
|
|
- if ci_variable_protected_by_default?
|
|
%p.settings-message.text-center
|
|
- link_start = '<a href="%{url}">'.html_safe % { url: help_page_path('ci/variables/README', anchor: 'protect-a-custom-variable') }
|
|
= s_('Environment variables are configured by your administrator to be %{link_start}protected%{link_end} by default.').html_safe % { link_start: link_start, link_end: '</a>'.html_safe }
|
|
|
|
- is_group = !@group.nil?
|
|
|
|
#js-ci-project-variables{ data: { endpoint: save_endpoint,
|
|
project_id: @project&.id || '',
|
|
group: is_group.to_s,
|
|
maskable_regex: ci_variable_maskable_regex,
|
|
protected_by_default: ci_variable_protected_by_default?.to_s,
|
|
aws_logo_svg_path: image_path('aws_logo.svg'),
|
|
aws_tip_deploy_link: help_page_path('ci/cloud_deployment/index.md', anchor: 'deploy-your-application-to-the-aws-elastic-container-service-ecs'),
|
|
aws_tip_commands_link: help_page_path('ci/cloud_deployment/index.md', anchor: 'run-aws-commands-from-gitlab-cicd'),
|
|
aws_tip_learn_link: help_page_path('ci/cloud_deployment/index.md', anchor: 'aws'),
|
|
protected_environment_variables_link: help_page_path('ci/variables/README', anchor: 'protect-a-custom-variable'),
|
|
masked_environment_variables_link: help_page_path('ci/variables/README', anchor: 'mask-a-custom-variable'),
|
|
} }
|
|
|
|
- if !@group && @project.group
|
|
.settings-header.border-top.gl-mt-6
|
|
= render 'ci/group_variables/header'
|
|
.settings-content.pr-0
|
|
= render 'ci/group_variables/index'
|