Skip to content

Commit

Permalink
automated commit
Browse files Browse the repository at this point in the history
Signed-off-by: Public copy <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed Oct 12, 2024
1 parent 3ce35e9 commit 88927e6
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion images/gitlab-pages/config/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,41 @@ output "config" {
packages = var.extra_packages
}
accounts = module.accts.block
environment = {
"HOME" = "/home/git"
"LANG" = "C.UTF-8"
"CONFIG_TEMPLATE_DIRECTORY" = "/etc/gitlab-pages"
}
entrypoint = {
command = "/scripts/start-pages"
command = "/scripts/entrypoint.sh"
}
paths = [{
path = "/etc/gitlab-pages"
type = "directory"
permissions = 493
uid = module.accts.uid
gid = module.accts.gid
recursive = true
}, {
path = "/srv/gitlab-pages"
type = "directory"
permissions = 493
uid = module.accts.uid
gid = module.accts.gid
recursive = true
}, {
path = "/var/log/gitlab-pages"
type = "directory"
permissions = 493
uid = module.accts.uid
gid = module.accts.gid
recursive = true
}, {
path = "/home/git"
type = "directory"
permissions = 493
uid = module.accts.uid
gid = module.accts.gid
recursive = true
}]
})
Expand Down

0 comments on commit 88927e6

Please sign in to comment.