Skip to content
This repository was archived by the owner on Oct 7, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion roles/_meta/aws_region/meta/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dependencies:
- role: aws/aws_vpc
- role: aws/aws_vpc_subnet
- role: aws/aws_iam_role
- role: aws/aws_acl
# - role: aws/aws_acl
- role: aws/aws_cloudwatch_log_group
- role: aws/aws_backup
- role: aws/aws_backup_sns
Expand Down
1 change: 1 addition & 0 deletions roles/debian/gitlab/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ gitlab:
apt_origin: "origin=packages.gitlab.com/gitlab/gitlab-ce,codename=${distro_codename},label=gitlab-ce" # used by apt_unattended_upgrades
apt_signed_by: https://packages.gitlab.com/gitlab/gitlab-ce/gpgkey
server_name: "gitlab.{{ _domain_name }}"
ssh_url: "" # custom SSH URL. Similar to https one if empty.
force_stop: true # whether to stop GitLab to reconfigure or not
# Add a record for GitLab in AWS Route 53
# If you use the aws_ec2_with_eip role to create your server this will not be necessary
Expand Down
4 changes: 4 additions & 0 deletions roles/debian/gitlab/templates/gitlab.rb.j2
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,11 @@ external_url 'https://{{ gitlab.server_name }}'
## gitlab.yml configuration
##! Docs: https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/doc/settings/gitlab.yml.md
################################################################################
{% if (gitlab.ssh_url | length > 0) %}
gitlab_rails['gitlab_ssh_host'] = '{{ gitlab.ssh_url }}'
{% else %}
# gitlab_rails['gitlab_ssh_host'] = 'ssh.host_example.com'
{% endif %}
# gitlab_rails['time_zone'] = 'UTC'

### Email Settings
Expand Down
Loading