From e49d92a51d952ed85a6f6fdc94187375358e4248 Mon Sep 17 00:00:00 2001 From: Bryan Robinson Date: Wed, 6 May 2026 09:16:52 -0400 Subject: [PATCH 1/4] Removes tenantId as that's been removed in 1.65 --- src/resources/kickstart/kickstart.json | 1 - 1 file changed, 1 deletion(-) diff --git a/src/resources/kickstart/kickstart.json b/src/resources/kickstart/kickstart.json index 83a08f6..cf403e1 100644 --- a/src/resources/kickstart/kickstart.json +++ b/src/resources/kickstart/kickstart.json @@ -17,7 +17,6 @@ { "method": "POST", "url": "/api/key/generate/#{asymmetricKeyId}", - "tenantId": "#{defaultTenantId}", "body": { "key": { "algorithm": "RS256", From fa3409260a666abd71a434e6fbee5e4c7cd75673 Mon Sep 17 00:00:00 2001 From: Bryan Robinson Date: Wed, 6 May 2026 09:19:29 -0400 Subject: [PATCH 2/4] Updates patch version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 56842f2..30dd973 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@fusionauth/cli", - "version": "1.8.1", + "version": "1.8.2", "description": "FusionAuth CLI", "main": "dist/index.js", "files": [ From b17d9bd1fc8d1eceb90a7d6798540ca401940785 Mon Sep 17 00:00:00 2001 From: Bryan Robinson Date: Wed, 6 May 2026 09:36:07 -0400 Subject: [PATCH 3/4] Updates to include Tenant scoping in the body --- src/resources/kickstart/kickstart.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/resources/kickstart/kickstart.json b/src/resources/kickstart/kickstart.json index cf403e1..536168f 100644 --- a/src/resources/kickstart/kickstart.json +++ b/src/resources/kickstart/kickstart.json @@ -22,7 +22,9 @@ "algorithm": "RS256", "name": "For example app", "length": 2048 - } + }, + "tenantId": "#{defaultTenantId}" + } }, { From e6ec1e074bd99de48800b4744c04038064a1c916 Mon Sep 17 00:00:00 2001 From: Bryan Robinson Date: Mon, 18 May 2026 09:22:57 -0400 Subject: [PATCH 4/4] Removes tenantID completely per feedback --- src/resources/kickstart/kickstart.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/resources/kickstart/kickstart.json b/src/resources/kickstart/kickstart.json index 536168f..cf403e1 100644 --- a/src/resources/kickstart/kickstart.json +++ b/src/resources/kickstart/kickstart.json @@ -22,9 +22,7 @@ "algorithm": "RS256", "name": "For example app", "length": 2048 - }, - "tenantId": "#{defaultTenantId}" - + } } }, {