2018-03-17 18:26:18 +05:30
- save_endpoint = local_assigns.fetch(:save_endpoint, nil)
2019-02-15 15:39:39 +05:30
- if ci_variable_protected_by_default?
2022-11-25 23:54:43 +05:30
= render Pajamas::AlertComponent.new(variant: :warning, show_icon: false, dismissible: false,
alert_options: { class: 'gl-mb-3'}) do |c|
= c.body do
- link_start = '<a href="%{url}">'.html_safe % { url: help_page_path('ci/variables/index', anchor: 'protected-cicd-variables') }
= _('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 }
2019-02-15 15:39:39 +05:30
2021-01-29 00:20:46 +05:30
- is_group = !@group.nil?
2022-08-27 11:52:29 +05:30
- is_project = !@project.nil?
2018-03-17 18:26:18 +05:30
2023-01-13 00:05:48 +05:30
#js-ci-variables{ data: { endpoint: save_endpoint,
2022-08-27 11:52:29 +05:30
is_project: is_project.to_s,
2021-01-29 00:20:46 +05:30
project_id: @project&.id || '',
2022-08-27 11:52:29 +05:30
project_full_path: @project&.full_path || '',
is_group: is_group.to_s,
group_id: @group&.id || '',
group_path: @group&.full_path,
2021-01-29 00:20:46 +05:30
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'),
2022-07-23 23:45:48 +05:30
aws_tip_deploy_link: help_page_path('ci/cloud_deployment/index.md', anchor: 'deploy-your-application-to-ecs'),
aws_tip_commands_link: help_page_path('ci/cloud_deployment/index.md', anchor: 'use-an-image-to-run-aws-commands'),
aws_tip_learn_link: help_page_path('ci/cloud_deployment/index.md'),
2023-03-04 22:38:38 +05:30
contains_variable_reference_link: help_page_path('ci/variables/index', anchor: 'expand-cicd-variables'),
2022-07-16 23:28:13 +05:30
protected_environment_variables_link: help_page_path('ci/variables/index', anchor: 'protected-cicd-variables'),
2021-09-30 23:02:18 +05:30
masked_environment_variables_link: help_page_path('ci/variables/index', anchor: 'mask-a-cicd-variable'),
2022-07-16 23:28:13 +05:30
environment_scope_link: help_page_path('ci/environments/index', anchor: 'scope-environments-with-specs') } }
2020-04-08 14:13:33 +05:30
- if !@group && @project.group
2021-03-08 18:12:59 +05:30
.settings-header.border-top.gl-mt-6
2020-04-08 14:13:33 +05:30
= render 'ci/group_variables/header'
.settings-content.pr-0
= render 'ci/group_variables/index'