Skip to content

Commit d5be9bd

Browse files
authored
fix: correct gitlab type references (#125)
1 parent 14146af commit d5be9bd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ The current authentication model requires providing Vault with a Gitlab Token.
9292
| base_url | yes | n/a | no | The address to access Gitlab |
9393
| auto_rotate_token | no | no | no | Should we autorotate the token when it's close to expiry? (Experimental) |
9494
| auto_rotate_before | no | 24h | no | How much time should be remaining on the token validity before we should rotate it? Minimum can be set to 24h and maximum to 730h |
95-
| type | yes | n/a | no | The type of gitlab instance that we use can be one of saas, self-hosted or dedicated |
95+
| type | yes | n/a | no | The type of gitlab instance that we use can be one of saas, self-managed or dedicated |
9696
9797
### Role
9898

path_config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ var (
3333
DisplayAttrs: &framework.DisplayAttributes{
3434
Name: "GitLab Base URL",
3535
},
36-
Description: `The base URL of your GitLab instance. This could be the URL of a self-hosted GitLab instance or the URL of the GitLab SaaS service (https://gitlab.com). The URL must be properly formatted, including the scheme (http or https). This field is essential as it determines the endpoint where API requests will be directed.`,
36+
Description: `The base URL of your GitLab instance. This could be the URL of a self-managed GitLab instance or the URL of the GitLab SaaS service (https://gitlab.com). The URL must be properly formatted, including the scheme (http or https). This field is essential as it determines the endpoint where API requests will be directed.`,
3737
},
3838
"type": {
3939
Type: framework.TypeString,
@@ -43,7 +43,7 @@ var (
4343
TypeSaaS,
4444
TypeDedicated,
4545
},
46-
Description: `The type of GitLab instance you are connecting to. This could typically distinguish between 'self-hosted' for on-premises GitLab installations or 'saas' or 'dedicated' for the GitLab SaaS offering. This field helps the plugin to adjust any necessary configurations or request patterns specific to the type of GitLab instance.`,
46+
Description: `The type of GitLab instance you are connecting to. This could typically distinguish between 'self-managed' for on-premises GitLab installations or 'saas' or 'dedicated' for the GitLab SaaS offering. This field helps the plugin to adjust any necessary configurations or request patterns specific to the type of GitLab instance.`,
4747
DisplayAttrs: &framework.DisplayAttributes{
4848
Name: "GitLab Type",
4949
},

0 commit comments

Comments
 (0)