-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathproviders.yaml
More file actions
105 lines (105 loc) · 3.23 KB
/
providers.yaml
File metadata and controls
105 lines (105 loc) · 3.23 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
providers:
- name: azurerm
source: "hashicorp/azurerm"
variables:
- name: subscription_id
scope: global
- name: client_id
scope: global
- name: client_secret
scope: global
sensitive: true
- name: tenant_id
scope: global
- name: aws
source: "hashicorp/aws"
variables:
- name: region
scope: global
- name: access_key
scope: global
- name: secret_key
scope: global
sensitive: true
- name: ibm
source: ibm-cloud/ibm
variables:
- name: ibmcloud_api_key
scope: global
sensitive: true
- name: region
scope: global
- name: gitops
source: cloud-native-toolkit/gitops
dependencies:
- id: clis
refs:
- source: github.com/cloud-native-toolkit/terraform-util-clis.git
- id: gitea
optional: true
refs:
- source: github.com/cloud-native-toolkit/terraform-tools-gitea.git
variables:
- name: bin_dir
moduleRef:
id: clis
output: bin_dir
- name: default_host
default: ""
moduleRef:
id: gitea
output: host
- name: default_org
default: ""
moduleRef:
id: gitea
output: org
- name: default_username
default: ""
moduleRef:
id: gitea
output: username
- name: default_token
default: ""
sensitive: true
moduleRef:
id: gitea
output: token
- name: default_ca_cert
default: ""
moduleRef:
id: gitea
output: ca_cert
- name: host
description: "The host name of the gitops repository (GitHub, Github Enterprise, Gitlab, Bitbucket, Azure DevOps, and Gitea servers are supported)."
default: ""
- name: org
description: "The organization on the git server where the repsitory will be located. If not provided the org will default to the username."
default: ""
- name: project
description: "The Azure DevOps project in the git server. This value is only applied for Azure DevOps servers."
default: ""
- name: repo
description: "The name of the repository in the org on the git server."
default: ""
- name: username
description: "The username used to access the git server."
default: ""
- name: token
description: "The token used to access the git server."
default: ""
sensitive: true
- name: branch
description: "The name of the branch in the gitops repository where the config will be stored."
default: "main"
- name: server_name
description: "The name of the server the configuration with which the configuration will be associated."
default: "default"
- name: ca_cert
description: "The ca certificate used to sign the self-signed certificate used by the git server, if applicable."
default: ""
- name: ca_cert_file
description: "The file containing the ca certificate used to sign the self-signed certificate used by the git server, if applicable."
default: ""
- name: clis
source: cloud-native-toolkit/clis