@aws-sdk/credential-provider-node 3.36.0 → 3.36.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [3.36.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.36.0...v3.36.1) (2021-10-12)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/credential-provider-node
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.36.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.35.0...v3.36.0) (2021-10-08)
7
15
 
8
16
 
@@ -5,38 +5,5 @@ import { FromSSOInit } from "@aws-sdk/credential-provider-sso";
5
5
  import { FromTokenFileInit } from "@aws-sdk/credential-provider-web-identity";
6
6
  import { CredentialProvider } from "@aws-sdk/types";
7
7
  export declare const ENV_IMDS_DISABLED = "AWS_EC2_METADATA_DISABLED";
8
- /**
9
- * Creates a credential provider that will attempt to find credentials from the
10
- * following sources (listed in order of precedence):
11
- * * Environment variables exposed via `process.env`
12
- * * SSO credentials from token cache
13
- * * Web identity token credentials
14
- * * Shared credentials and config ini files
15
- * * The EC2/ECS Instance Metadata Service
16
- *
17
- * The default credential provider will invoke one provider at a time and only
18
- * continue to the next if no credentials have been located. For example, if
19
- * the process finds values defined via the `AWS_ACCESS_KEY_ID` and
20
- * `AWS_SECRET_ACCESS_KEY` environment variables, the files at
21
- * `~/.aws/credentials` and `~/.aws/config` will not be read, nor will any
22
- * messages be sent to the Instance Metadata Service.
23
- *
24
- * @param init Configuration that is passed to each individual
25
- * provider
26
- *
27
- * @see fromEnv The function used to source credentials from
28
- * environment variables
29
- * @see fromSSO The function used to source credentials from
30
- * resolved SSO token cache
31
- * @see fromTokenFile The function used to source credentials from
32
- * token file
33
- * @see fromIni The function used to source credentials from INI
34
- * files
35
- * @see fromProcess The function used to sources credentials from
36
- * credential_process in INI files
37
- * @see fromInstanceMetadata The function used to source credentials from the
38
- * EC2 Instance Metadata Service
39
- * @see fromContainerMetadata The function used to source credentials from the
40
- * ECS Container Metadata Service
41
- */
8
+
42
9
  export declare const defaultProvider: (init?: FromIniInit & RemoteProviderInit & FromProcessInit & FromSSOInit & FromTokenFileInit) => CredentialProvider;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-node",
3
- "version": "3.36.0",
3
+ "version": "3.36.1",
4
4
  "description": "AWS credential provider that sources credentials from a Node.JS environment. ",
5
5
  "engines": {
6
6
  "node": ">=10.0.0"
@@ -27,9 +27,9 @@
27
27
  "dependencies": {
28
28
  "@aws-sdk/credential-provider-env": "3.36.0",
29
29
  "@aws-sdk/credential-provider-imds": "3.36.0",
30
- "@aws-sdk/credential-provider-ini": "3.36.0",
30
+ "@aws-sdk/credential-provider-ini": "3.36.1",
31
31
  "@aws-sdk/credential-provider-process": "3.36.0",
32
- "@aws-sdk/credential-provider-sso": "3.36.0",
32
+ "@aws-sdk/credential-provider-sso": "3.36.1",
33
33
  "@aws-sdk/credential-provider-web-identity": "3.36.0",
34
34
  "@aws-sdk/property-provider": "3.36.0",
35
35
  "@aws-sdk/shared-ini-file-loader": "3.36.0",