Skip to content

Commit 11f3c3c

Browse files
authoredFeb 3, 2025··
feat(credential-provider-ini): add ignoreCache option (#6856)
* feat(credential-provider-ini): add ignoreCache option * chore(supplemental-docs): import update * docs(supplemental-docs): typo fix * fix(supplemental-docs): temp creds clarification and import fix * docs(supplemental-docs): rm client modification * docs(supplemental-docs): temp creds update
1 parent 602116a commit 11f3c3c

File tree

3 files changed

+94
-0
lines changed

3 files changed

+94
-0
lines changed
 

‎packages/credential-provider-ini/src/fromIni.spec.ts

+51
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,55 @@ describe(fromIni.name, () => {
7272
mockInitWithParentClientConfig
7373
);
7474
});
75+
76+
describe("ignoreCache option", () => {
77+
it("passes ignoreCache option to parseKnownFiles when true", async () => {
78+
const initWithIgnoreCache = { ...mockInit, ignoreCache: true };
79+
const expectedInitWithParentClientConfig = {
80+
...mockInitWithParentClientConfig,
81+
ignoreCache: true,
82+
};
83+
84+
await fromIni(initWithIgnoreCache)();
85+
86+
expect(parseKnownFiles).toHaveBeenCalledWith(expectedInitWithParentClientConfig);
87+
});
88+
89+
it("passes ignoreCache option to parseKnownFiles when false", async () => {
90+
const initWithIgnoreCache = { ...mockInit, ignoreCache: false };
91+
const expectedInitWithParentClientConfig = {
92+
...mockInitWithParentClientConfig,
93+
ignoreCache: false,
94+
};
95+
96+
await fromIni(initWithIgnoreCache)();
97+
98+
expect(parseKnownFiles).toHaveBeenCalledWith(expectedInitWithParentClientConfig);
99+
});
100+
101+
it("does not pass ignoreCache when option is undefined", async () => {
102+
await fromIni(mockInit)();
103+
104+
expect(parseKnownFiles).toHaveBeenCalledWith(mockInitWithParentClientConfig);
105+
expect(mockInitWithParentClientConfig).not.toHaveProperty("ignoreCache");
106+
});
107+
108+
it("preserves ignoreCache when merging with callerClientConfig", async () => {
109+
const initWithIgnoreCache = { ...mockInit, ignoreCache: true };
110+
const callerConfig = {
111+
profile: "otherProfile",
112+
region: async () => "us-east-1",
113+
};
114+
115+
await fromIni(initWithIgnoreCache)({ callerClientConfig: callerConfig });
116+
117+
expect(parseKnownFiles).toHaveBeenCalledWith(
118+
expect.objectContaining({
119+
ignoreCache: true,
120+
profile: mockProfileName,
121+
parentClientConfig: expect.objectContaining(callerConfig),
122+
})
123+
);
124+
});
125+
});
75126
});

‎packages/credential-provider-ini/src/fromIni.ts

+6
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,12 @@ export interface FromIniInit extends SourceProfileInit, CredentialProviderOption
4747
clientConfig?: any;
4848

4949
clientPlugins?: Pluggable<any, any>[];
50+
51+
/**
52+
* When true, always reload credentials from the file system instead of using cached values.
53+
* This is useful when you need to detect changes to the credentials file.
54+
*/
55+
ignoreCache?: boolean;
5056
}
5157

5258
/**

‎supplemental-docs/CLIENTS.md

+37
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,43 @@ const client = new S3Client({
151151
});
152152
```
153153

154+
#### Enabling uncached/refreshed credentials in `fromIni` credential provider
155+
156+
`fromIni` credential provider accepts a boolean `ignoreCache` option which when true, always reloads credentials from the file system instead of using cached values. This is useful when you need to detect changes to the credentials file.
157+
158+
Note: For temporary credentials that need regular refreshing, consider using `fromTemporaryCredentials` instead.
159+
160+
Using ignoreCache with an S3 client:
161+
162+
```typescript
163+
import { S3Client } from "@aws-sdk/client-s3";
164+
import { fromIni } from "@aws-sdk/credential-providers";
165+
166+
// Create client with credentials that will reload from file
167+
const client = new S3Client({
168+
credentials: fromIni({ ignoreCache: true }),
169+
});
170+
```
171+
172+
For temporary credentials:
173+
174+
You can use the `fromTemporaryCredentials` provider that creates a credential provider function that retrieves temporary credentials from STS AssumeRole API. Depending on your use-case, this might be the preferred way to use temporary credentials, as compared to having a `.ini` file with `ignoreCache` (that will utilize filesystem operations) set to true.
175+
176+
```typescript
177+
import { fromTemporaryCredentials } from "@aws-sdk/credential-providers";
178+
179+
// Better approach for temporary credentials that need regular refreshing
180+
const client = new S3Client({
181+
credentials: fromTemporaryCredentials({
182+
// your temporary credentials config
183+
}),
184+
});
185+
```
186+
187+
- When using with AWS clients, the credential provider function is handled automatically.
188+
- For temporary credentials that need regular refreshing, `fromTemporaryCredentials` is recommended over manual refresh with `ignoreCache`.
189+
- Creating a new client instance ensures fresh credentials.
190+
154191
### AWS Profile `profile`
155192

156193
Available since [v3.714.0](https://github.com/aws/aws-sdk-js-v3/releases/tag/v3.714.0).

0 commit comments

Comments
 (0)
Please sign in to comment.