-
Notifications
You must be signed in to change notification settings - Fork 478
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into update-deps-jul23-2
Signed-off-by: Bernd Verst <[email protected]>
- Loading branch information
Showing
153 changed files
with
754 additions
and
689 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
aws: | ||
- title: "AWS: Access Key ID and Secret Access Key" | ||
description: | | ||
Authenticate using an Access Key ID and Secret Access Key included in the metadata | ||
metadata: | ||
- name: accessKey | ||
description: AWS access key associated with an IAM account | ||
required: true | ||
sensitive: true | ||
example: '"AKIAIOSFODNN7EXAMPLE"' | ||
- name: secretKey | ||
description: The secret key associated with the access key | ||
required: true | ||
sensitive: true | ||
example: '"wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY"' | ||
- title: "AWS: Credentials from Environment Variables" | ||
description: Use AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY from the environment | ||
|
||
azuread: | ||
- title: "Azure AD: Managed identity" | ||
description: Authenticate using Azure AD and a managed identity. | ||
metadata: | ||
- name: azureClientId | ||
description: | | ||
Client ID (application ID). Required if the service has multiple identities assigned. | ||
example: '"c7dd251f-811f-4ba2-a905-acd4d3f8f08b"' | ||
- name: azureEnvironment | ||
description: | | ||
Optional name for the Azure environment if using a different Azure cloud | ||
default: AzurePublicCloud | ||
example: '"AzurePublicCloud"' | ||
allowedValues: | ||
- AzurePublicCloud | ||
- AzureChinaCloud | ||
- AzureUSGovernmentCloud | ||
- title: "Azure AD: Client credentials" | ||
description: | | ||
Authenticate using Azure AD with client credentials, also known as "service principals". | ||
metadata: | ||
- name: azureTenantId | ||
description: ID of the Azure AD tenant | ||
required: true | ||
example: '"cd4b2887-304c-47e1-b4d5-65447fdd542a"' | ||
- name: azureClientId | ||
description: Client ID (application ID) | ||
required: true | ||
example: '"c7dd251f-811f-4ba2-a905-acd4d3f8f08b"' | ||
- name: azureClientSecret | ||
description: Client secret (application password) | ||
required: true | ||
sensitive: true | ||
example: '"Ecy3XG7zVZK3/vl/a2NSB+a1zXLa8RnMum/IgD0E"' | ||
- name: azureEnvironment | ||
description: | | ||
Optional name for the Azure environment if using a different Azure cloud | ||
default: AzurePublicCloud | ||
example: '"AzurePublicCloud"' | ||
allowedValues: | ||
- AzurePublicCloud | ||
- AzureChinaCloud | ||
- AzureUSGovernmentCloud | ||
- title: "Azure AD: Client certificate" | ||
description: | | ||
Authenticate using Azure AD with a client certificate. One of "azureCertificate" and "azureCertificateFile" is required. | ||
metadata: | ||
- name: azureTenantId | ||
description: ID of the Azure AD tenant | ||
required: true | ||
example: '"cd4b2887-304c-47e1-b4d5-65447fdd542a"' | ||
- name: azureClientId | ||
description: Client ID (application ID) | ||
required: true | ||
example: '"c7dd251f-811f-4ba2-a905-acd4d3f8f08b"' | ||
- name: azureCertificate | ||
description: | | ||
Certificate and private key (in either a PEM file containing both the certificate and key, or in PFX/PKCS#12 format) | ||
sensitive: true | ||
example: | | ||
"-----BEGIN PRIVATE KEY-----\n MIIEvgI... \n -----END PRIVATE KEY----- | ||
\n -----BEGIN CERTIFICATE----- \n MIICoTC... \n -----END CERTIFICATE----- \n" | ||
- name: azureCertificateFile | ||
description: | | ||
Path to PEM or PFX/PKCS#12 file on disk, containing the certificate and private key. | ||
example: '"/path/to/file.pem"' | ||
- name: azureCertificatePassword | ||
description: Password for the certificate if encrypted. | ||
sensitive: true | ||
example: '"password"' | ||
- name: azureEnvironment | ||
description: | | ||
Optional name for the Azure environment if using a different Azure cloud | ||
default: AzurePublicCloud | ||
example: '"AzurePublicCloud"' | ||
allowedValues: | ||
- AzurePublicCloud | ||
- AzureChinaCloud | ||
- AzureUSGovernmentCloud |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
componentFolders: | ||
- bindings | ||
- configuration | ||
- crypto | ||
- lock | ||
- middleware/http | ||
- nameresolution | ||
- pubsub | ||
- secretstores | ||
- state | ||
- workflows | ||
|
||
excludeFolders: | ||
- bindings/alicloud | ||
- bindings/aws | ||
- bindings/azure | ||
- bindings/gcp | ||
- bindings/huawei | ||
- bindings/rethinkdb | ||
- bindings/twilio | ||
- bindings/zeebe | ||
- configuration/azure | ||
- configuration/redis/internal | ||
- crypto/azure | ||
- crypto/kubernetes | ||
- pubsub/aws | ||
- pubsub/azure | ||
- pubsub/azure/servicebus | ||
- pubsub/gcp | ||
- secretstores/alicloud | ||
- secretstores/aws | ||
- secretstores/azure | ||
- secretstores/gcp | ||
- secretstores/hashicorp | ||
- secretstores/huaweicloud | ||
- secretstores/local | ||
- state/alicloud | ||
- state/aws | ||
- state/azure | ||
- state/gcp | ||
- state/hashicorp | ||
- state/oci | ||
- state/utils |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.