Skip to content

Commit 2551ce0

Browse files
authored
Merge pull request #10 from aws-solutions/release/v1.0.2
Release v1.0.2
2 parents a20ac31 + 9b53127 commit 2551ce0

File tree

37 files changed

+152
-92
lines changed

37 files changed

+152
-92
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.0.2] - 2025-06-25
9+
10+
### Fixed
11+
12+
- Cross account SSM GetParameter sdk call targeting incorrect accountId ([#9](https://github.com/aws-solutions/innovation-sandbox-on-aws/issues/9))
13+
814
## [1.0.1] - 2025-06-19
915

1016
### Added

docs/openapi/innovation-sandbox-api.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ openapi: 3.0.0
22
info:
33
title: Innovation Sandbox on AWS
44
description: API documentation for the Innovation Sandbox on AWS solution.
5-
version: 1.0.1
5+
version: 1.0.2
66
license:
77
name: Apache 2.0
88
url: "http://www.apache.org/licenses/LICENSE-2.0.html"

package-lock.json

Lines changed: 28 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "innovation-sandbox-on-aws",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "Innovation Sandbox on AWS (SO0284)",
55
"scripts": {
66
"test": "vitest run --coverage",

solution-manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
id: SO0284
22
name: innovation-sandbox-on-aws
3-
version: v1.0.1
3+
version: v1.0.2
44
cloudformation_templates:
55
- template: InnovationSandbox-AccountPool.template
66
main_template: true

source/common/isb-services/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ export class IsbServices {
124124
) {
125125
return new IdcService({
126126
namespace: env.ISB_NAMESPACE,
127-
ssmClient: IsbClients.ssm(env),
127+
ssmClient: IsbClients.ssm(env, credentials),
128128
ssoAdminClient: IsbClients.ssoAdmin(env, credentials),
129129
identityStoreClient: IsbClients.identityStore(env, credentials),
130130
});

source/common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@amzn/innovation-sandbox-commons",
33
"description": "Common - Innovation Sandbox on AWS (SO0284)",
4-
"version": "1.0.1",
4+
"version": "1.0.2",
55
"scripts": {
66
"build": "tsc",
77
"test": "vitest run"

source/common/sdk-clients/index.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,15 @@ export class IsbClients {
109109
return cachedStepFunctionsClient;
110110
}
111111

112-
public static ssm(env: { USER_AGENT_EXTRA: string }): IsbSSMClient {
112+
public static ssm(
113+
env: { USER_AGENT_EXTRA: string },
114+
credentials?: AwsCredentialIdentity | AwsCredentialIdentityProvider,
115+
): IsbSSMClient {
113116
if (cachedSSMClient == null) {
114117
cachedSSMClient = tracer.captureAWSv3Client(
115118
new IsbSSMClient({
116119
customUserAgent: env.USER_AGENT_EXTRA,
120+
credentials,
117121
}),
118122
);
119123
}

source/e2e/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@amzn/innovation-sandbox-e2e",
33
"description": "E2E Tests - Innovation Sandbox on AWS (SO0284)",
4-
"version": "1.0.1",
4+
"version": "1.0.2",
55
"scripts": {
66
"build": "tsc",
77
"e2e": "vitest run --config ./vitest.config.e2e.ts",

source/frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@amzn/innovation-sandbox-frontend",
33
"description": "Frontend - Innovation Sandbox on AWS (SO0284)",
44
"private": true,
5-
"version": "1.0.1",
5+
"version": "1.0.2",
66
"type": "module",
77
"scripts": {
88
"dev": "vite",

0 commit comments

Comments
 (0)