-
Notifications
You must be signed in to change notification settings - Fork 922
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use secret manager to store auth token
small updates and improvements
- Loading branch information
1 parent
1edb25a
commit e13aefe
Showing
5 changed files
with
77 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -128,11 +128,12 @@ Please be aware of the following requirements for the Docker Autoscaler executor | |
| name | description | type | required | default | | ||
|---|---|:---:|:---:|:---:| | ||
| [gitlab_config](variables.tf#L23) | Gitlab server configuration. | <code title="object({ hostname = optional(string, "gitlab.gcp.example.com") ca_cert_pem = optional(string, null) })">object({…})</code> | ✓ | | | ||
| [gitlab_runner_config](variables.tf#L31) | Gitlab Runner config. | <code title="object({ authentication_token = string executors_config = object({ docker_autoscaler = optional(object({ gcp_project_id = string zone = optional(string, "europe-west1-b") mig_name = optional(string, "gitlab-runner") machine_type = optional(string, "g1-small") machine_image = optional(string, "coreos-cloud/global/images/family/coreos-stable") network_tags = optional(list(string), ["gitlab-runner"]) }), null) docker = optional(object({ tls_verify = optional(bool, true) }), null) }) })">object({…})</code> | ✓ | | | ||
| [gitlab_runner_config](variables.tf#L31) | Gitlab Runner config. | <code title="object({ authentication_token = string executors_config = object({ docker_autoscaler = optional(object({ gcp_project_id = string zone = optional(string) mig_name = optional(string, "gitlab-runner") machine_type = optional(string, "g1-small") machine_image = optional(string, "coreos-cloud/global/images/family/coreos-stable") network_tags = optional(list(string), ["gitlab-runner"]) }), null) docker = optional(object({ tls_verify = optional(bool, true) }), null) }) })">object({…})</code> | ✓ | | | ||
| [network_config](variables.tf#L58) | Shared VPC network configurations to use for Gitlab Runner VM. | <code title="object({ host_project = optional(string) network_self_link = string subnet_self_link = string })">object({…})</code> | ✓ | | | ||
| [prefix](variables.tf#L67) | Prefix used for resource names. | <code>string</code> | ✓ | | | ||
| [project_id](variables.tf#L86) | Project id, references existing project if `project_create` is null. | <code>string</code> | ✓ | | | ||
| [vm_config](variables.tf#L91) | Gitlab runner GCE config. | <code title="object({ boot_disk_size = optional(number, 100) name = optional(string, "gitlab-runner-0") instance_type = optional(string, "e2-standard-2") network_tags = optional(list(string), []) zone = optional(string, "europe-west1-b") })">object({…})</code> | ✓ | | | ||
| [region](variables.tf#L91) | Region for the created resources. | <code>string</code> | ✓ | | | ||
| [vm_config](variables.tf#L96) | Gitlab runner GCE config. | <code title="object({ boot_disk_size = optional(number, 100) name = optional(string, "gitlab-runner-0") instance_type = optional(string, "e2-standard-2") network_tags = optional(list(string), []) zone = optional(string) })">object({…})</code> | ✓ | | | ||
| [admin_principals](variables.tf#L17) | Users, groups and/or service accounts that are assigned roles, in IAM format (`group:[email protected]`). | <code>list(string)</code> | | <code>[]</code> | | ||
| [project_create](variables.tf#L77) | Provide values if project creation is needed, uses existing project if null. Parent is in 'folders/nnn' or 'organizations/nnn' format. | <code title="object({ billing_account_id = string parent = string })">object({…})</code> | | <code>null</code> | | ||
<!-- END TFDOC --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters