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
feat: Add support for BitBucket Server and Azure DevOps Server (#6)
* feat: Add support for BitBucket Server and Azure DevOps Server
* docs: Generate README.md
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
| <aname="input_api_url"></a> [api\_url](#input\_api\_url)| The base URL of your VCS provider's API |`string`| n/a | yes |
55
55
| <aname="input_http_url"></a> [http\_url](#input\_http\_url)| The homepage of your VCS provider |`string`| n/a | yes |
56
+
| <aname="input_key"></a> [key](#input\_key)| The OAuth Client key can refer to a Consumer Key, Application Key, or another type of client key for the VCS provider |`string`|`null`| no |
56
57
| <aname="input_oauth_token"></a> [oauth\_token](#input\_oauth\_token)| The token string you were given by your VCS provider |`string`|`null`| no |
57
58
| <aname="input_organization"></a> [organization](#input\_organization)| Name of the organization |`string`| n/a | yes |
58
59
| <aname="input_private_key"></a> [private\_key](#input\_private\_key)| The text of the private key associated with your Azure DevOps Server account |`string`|`null`| no |
60
+
| <aname="input_rsa_public_key"></a> [rsa\_public\_key](#input\_rsa\_public\_key)| Required for BitBucket Server in conjunction with the secret |`string`|`null`| no |
61
+
| <aname="input_secret"></a> [secret](#input\_secret)| The OAuth Client secret is used for BitBucket Server, this secret is the the text of the SSH private key associated with your BitBucket Server Application Link |`string`|`null`| no |
59
62
| <aname="input_service_provider"></a> [service\_provider](#input\_service\_provider)| The VCS provider being connected with |`string`| n/a | yes |
Copy file name to clipboardexpand all lines: variables.tf
+18
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,24 @@ variable "private_key" {
25
25
description="The text of the private key associated with your Azure DevOps Server account"
26
26
}
27
27
28
+
variable"key" {
29
+
type=string
30
+
default=null
31
+
description="The OAuth Client key can refer to a Consumer Key, Application Key, or another type of client key for the VCS provider"
32
+
}
33
+
34
+
variable"secret" {
35
+
type=string
36
+
default=null
37
+
description="The OAuth Client secret is used for BitBucket Server, this secret is the the text of the SSH private key associated with your BitBucket Server Application Link"
38
+
}
39
+
40
+
variable"rsa_public_key" {
41
+
type=string
42
+
default=null
43
+
description="Required for BitBucket Server in conjunction with the secret"
44
+
}
45
+
28
46
variable"service_provider" {
29
47
type=string
30
48
description="The VCS provider being connected with"
0 commit comments