-
Notifications
You must be signed in to change notification settings - Fork 3
/
github.tf
27 lines (22 loc) · 890 Bytes
/
github.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
* When using this module through the cloud-platform-environments,
*
*/
module "github-prototype" {
source = "../"
namespace = "apply-for-compensation-prototype"
/*
# Set these to false, if you don't want to create any of these files.
prototype_create_github_workflow = false
prototype_create_dockerfile = false
prototype_create_deployment_file = false
prototype_create_start_sh = false
prototype_create_docker_ignore_file = false
*/
# Provide path of files, if you want to use your own template files.
github_workflow_content = trimspace(".github/workflows/cd.yaml")
dockerfile_content = trimspace("Dockerfile")
docker_ignore_file_content = trimspace(".dockerignore")
deployment_file_content = trimspace("kubernetes-deploy.tpl")
start_sh_file_content = trimspace("start.sh")
}