You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| <aname="input_environment"></a> [environment](#input\_environment)| A name that identifies the environment, will used as prefix and for tagging. |`string`|`"runners-default"`| no|
81
-
| <aname="input_gitlab_url"></a> [gitlab\_url](#input\_gitlab\_url)| URL of the gitlab instance to connect to. |`string`|`"https://gitlab.com"`|no|
| <aname="input_runner_name"></a> [runner\_name](#input\_runner\_name)| Name of the runner, will be used in the runner config.toml |`string`|`"default-auto"`| no|
84
-
| <aname="input_timezone"></a> [timezone](#input\_timezone)| Name of the timezone that the runner will be used in. |`string`|`"Europe/Amsterdam"`| no|
| <aname="input_aws_region"></a> [aws\_region](#input\_aws\_region)| AWS region. |`string`|`"eu-west-1"`| no |
81
+
| <aname="input_environment"></a> [environment](#input\_environment)| A name that identifies the environment, will used as prefix and for tagging. |`string`|`"runners-default"`| no |
82
+
| <aname="input_gitlab_url"></a> [gitlab\_url](#input\_gitlab\_url)| URL of the gitlab instance to connect to. |`string`|`"https://gitlab.com"`| no |
| <aname="input_runner_name"></a> [runner\_name](#input\_runner\_name)| Name of the runner, will be used in the runner config.toml |`string`|`"default-auto"`| no |
85
+
| <aname="input_timezone"></a> [timezone](#input\_timezone)| Name of the timezone that the runner will be used in. |`string`|`"Europe/Amsterdam"`| no |
# Uncomment the HCL code below to configure a docker service so that registry mirror is used in auto-devops jobs
99
+
# See https://gitlab.com/gitlab-org/gitlab-runner/-/issues/27171 and https://docs.gitlab.com/ee/ci/docker/using_docker_build.html#the-service-in-the-gitlab-runner-configuration-file
100
+
# You can check this works with a CI job like:
101
+
# <pre>
102
+
# default:
103
+
# tags:
104
+
# - "docker_spot_runner"
105
+
# docker-mirror-check:
106
+
# image: docker:20.10.16
107
+
# stage: build
108
+
# variables:
109
+
# DOCKER_TLS_CERTDIR: ''
110
+
# script:
111
+
# - |
112
+
# - docker info
113
+
# if ! docker info | grep -i mirror
114
+
# then
115
+
# exit 1
116
+
# echo "No mirror config found"
117
+
# fi
118
+
# </pre>
119
+
#
120
+
# If not using an official docker image for your job, you may need to specify `DOCKER_HOST: tcp://docker:2375`
description="adds `runners.docker.services` blocks to config.toml. All fields must be set (examine the Dockerfile of the service image for the entrypoint - see ./examples/runner-default/main.tf)"
701
+
type=list(object({
702
+
name =string
703
+
alias =string
704
+
entrypoint =list(string)
705
+
command =list(string)
706
+
}))
707
+
default=[]
708
+
}
709
+
699
710
variable"kms_key_id" {
700
711
description="KMS key id to encrypted the CloudWatch logs. Ensure CloudWatch has access to the provided KMS key."
0 commit comments