Skip to content

Commit ccae8f2

Browse files
wip
1 parent 9c73f12 commit ccae8f2

33 files changed

+1174
-897
lines changed

docs/snippets/schemas/v3/app.schema.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@
4444
{
4545
"type": "object",
4646
"properties": {
47-
"gcpSecretName": {
47+
"gcpSecretPath": {
4848
"type": "string",
49-
"description": "The name of the GCP secret that contains the token."
49+
"description": "The path to the GCP secret that contains the token. Must be in the format `projects/<project-id>/secrets/<secret-name>/versions/<version-id>`."
5050
}
5151
},
5252
"required": [
53-
"gcpSecretName"
53+
"gcpSecretPath"
5454
],
5555
"additionalProperties": false
5656
}
@@ -106,13 +106,13 @@
106106
{
107107
"type": "object",
108108
"properties": {
109-
"gcpSecretName": {
109+
"gcpSecretPath": {
110110
"type": "string",
111-
"description": "The name of the GCP secret that contains the token."
111+
"description": "The path to the GCP secret that contains the token. Must be in the format `projects/<project-id>/secrets/<secret-name>/versions/<version-id>`."
112112
}
113113
},
114114
"required": [
115-
"gcpSecretName"
115+
"gcpSecretPath"
116116
],
117117
"additionalProperties": false
118118
}

docs/snippets/schemas/v3/azuredevops.schema.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@
2828
{
2929
"type": "object",
3030
"properties": {
31-
"gcpSecretName": {
31+
"gcpSecretPath": {
3232
"type": "string",
33-
"description": "The name of the GCP secret that contains the token."
33+
"description": "The path to the GCP secret that contains the token. Must be in the format `projects/<project-id>/secrets/<secret-name>/versions/<version-id>`."
3434
}
3535
},
3636
"required": [
37-
"gcpSecretName"
37+
"gcpSecretPath"
3838
],
3939
"additionalProperties": false
4040
}

docs/snippets/schemas/v3/bitbucket.schema.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@
3232
{
3333
"type": "object",
3434
"properties": {
35-
"gcpSecretName": {
35+
"gcpSecretPath": {
3636
"type": "string",
37-
"description": "The name of the GCP secret that contains the token."
37+
"description": "The path to the GCP secret that contains the token. Must be in the format `projects/<project-id>/secrets/<secret-name>/versions/<version-id>`."
3838
}
3939
},
4040
"required": [
41-
"gcpSecretName"
41+
"gcpSecretPath"
4242
],
4343
"additionalProperties": false
4444
}

docs/snippets/schemas/v3/connection.schema.mdx

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@
3232
{
3333
"type": "object",
3434
"properties": {
35-
"gcpSecretName": {
35+
"gcpSecretPath": {
3636
"type": "string",
37-
"description": "The name of the GCP secret that contains the token."
37+
"description": "The path to the GCP secret that contains the token. Must be in the format `projects/<project-id>/secrets/<secret-name>/versions/<version-id>`."
3838
}
3939
},
4040
"required": [
41-
"gcpSecretName"
41+
"gcpSecretPath"
4242
],
4343
"additionalProperties": false
4444
}
@@ -240,13 +240,13 @@
240240
{
241241
"type": "object",
242242
"properties": {
243-
"gcpSecretName": {
243+
"gcpSecretPath": {
244244
"type": "string",
245-
"description": "The name of the GCP secret that contains the token."
245+
"description": "The path to the GCP secret that contains the token. Must be in the format `projects/<project-id>/secrets/<secret-name>/versions/<version-id>`."
246246
}
247247
},
248248
"required": [
249-
"gcpSecretName"
249+
"gcpSecretPath"
250250
],
251251
"additionalProperties": false
252252
}
@@ -442,13 +442,13 @@
442442
{
443443
"type": "object",
444444
"properties": {
445-
"gcpSecretName": {
445+
"gcpSecretPath": {
446446
"type": "string",
447-
"description": "The name of the GCP secret that contains the token."
447+
"description": "The path to the GCP secret that contains the token. Must be in the format `projects/<project-id>/secrets/<secret-name>/versions/<version-id>`."
448448
}
449449
},
450450
"required": [
451-
"gcpSecretName"
451+
"gcpSecretPath"
452452
],
453453
"additionalProperties": false
454454
}
@@ -709,13 +709,13 @@
709709
{
710710
"type": "object",
711711
"properties": {
712-
"gcpSecretName": {
712+
"gcpSecretPath": {
713713
"type": "string",
714-
"description": "The name of the GCP secret that contains the token."
714+
"description": "The path to the GCP secret that contains the token. Must be in the format `projects/<project-id>/secrets/<secret-name>/versions/<version-id>`."
715715
}
716716
},
717717
"required": [
718-
"gcpSecretName"
718+
"gcpSecretPath"
719719
],
720720
"additionalProperties": false
721721
}
@@ -877,13 +877,13 @@
877877
{
878878
"type": "object",
879879
"properties": {
880-
"gcpSecretName": {
880+
"gcpSecretPath": {
881881
"type": "string",
882-
"description": "The name of the GCP secret that contains the token."
882+
"description": "The path to the GCP secret that contains the token. Must be in the format `projects/<project-id>/secrets/<secret-name>/versions/<version-id>`."
883883
}
884884
},
885885
"required": [
886-
"gcpSecretName"
886+
"gcpSecretPath"
887887
],
888888
"additionalProperties": false
889889
}

docs/snippets/schemas/v3/gitea.schema.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@
2828
{
2929
"type": "object",
3030
"properties": {
31-
"gcpSecretName": {
31+
"gcpSecretPath": {
3232
"type": "string",
33-
"description": "The name of the GCP secret that contains the token."
33+
"description": "The path to the GCP secret that contains the token. Must be in the format `projects/<project-id>/secrets/<secret-name>/versions/<version-id>`."
3434
}
3535
},
3636
"required": [
37-
"gcpSecretName"
37+
"gcpSecretPath"
3838
],
3939
"additionalProperties": false
4040
}

docs/snippets/schemas/v3/github.schema.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@
2828
{
2929
"type": "object",
3030
"properties": {
31-
"gcpSecretName": {
31+
"gcpSecretPath": {
3232
"type": "string",
33-
"description": "The name of the GCP secret that contains the token."
33+
"description": "The path to the GCP secret that contains the token. Must be in the format `projects/<project-id>/secrets/<secret-name>/versions/<version-id>`."
3434
}
3535
},
3636
"required": [
37-
"gcpSecretName"
37+
"gcpSecretPath"
3838
],
3939
"additionalProperties": false
4040
}

docs/snippets/schemas/v3/gitlab.schema.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@
2828
{
2929
"type": "object",
3030
"properties": {
31-
"gcpSecretName": {
31+
"gcpSecretPath": {
3232
"type": "string",
33-
"description": "The name of the GCP secret that contains the token."
33+
"description": "The path to the GCP secret that contains the token. Must be in the format `projects/<project-id>/secrets/<secret-name>/versions/<version-id>`."
3434
}
3535
},
3636
"required": [
37-
"gcpSecretName"
37+
"gcpSecretPath"
3838
],
3939
"additionalProperties": false
4040
}

0 commit comments

Comments
 (0)