@exabugs/dynamodb-client 1.1.0 → 1.1.2

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
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.1.2] - 2025-01-02
11
+
12
+ ### Fixed
13
+
14
+ - **Parameter Store**: outputs.tfのパラメータ参照を修正
15
+ - 古いパラメータ名(`app_records_api_url`, `lambda_records_function_arn`)から新しい名前(`infra_dynamodb_client_api_url`, `infra_dynamodb_client_api_arn`)に更新
16
+ - v1.1.0で変更したパラメータ名に合わせてoutputsを修正
17
+
18
+ ## [1.1.1] - 2025-01-02
19
+
20
+ ### Fixed
21
+
22
+ - **Parameter Store**: DynamoDB Table ARNパラメータの作成を修正
23
+ - `dynamodb_table_arn`をParameter Storeモジュールに渡すように修正
24
+ - `/infra/dynamodb-table-arn`パラメータが正しく作成されるようになった
25
+
10
26
  ## [1.1.0] - 2025-01-02
11
27
 
12
28
  ### Changed
@@ -1,5 +1,5 @@
1
- // @exabugs/dynamodb-client v1.1.0
2
- // Built: 2026-01-01T17:24:24.955Z
1
+ // @exabugs/dynamodb-client v1.1.2
2
+ // Built: 2026-01-01T17:49:53.300Z
3
3
  "use strict";
4
4
  var __create = Object.create;
5
5
  var __defProp = Object.defineProperty;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exabugs/dynamodb-client",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "DynamoDB Single-Table Client SDK with MongoDB-like API, Shadow Records, and Lambda implementation for serverless applications",
5
5
  "author": "exabugs",
6
6
  "license": "MIT",
package/terraform/main.tf CHANGED
@@ -186,6 +186,7 @@ module "parameter_store" {
186
186
 
187
187
  # DynamoDB設定
188
188
  dynamodb_table_name = var.dynamodb_table_name
189
+ dynamodb_table_arn = var.dynamodb_table_arn
189
190
 
190
191
  depends_on = [
191
192
  aws_lambda_function.records,
@@ -1,34 +0,0 @@
1
- # Parameter Store モジュール出力
2
-
3
- # Parameter Store ARNs
4
- output "parameter_arns" {
5
- description = "作成されたParameter StoreパラメータのARN一覧"
6
- value = {
7
- records_api_url = aws_ssm_parameter.app_records_api_url.arn
8
- dynamodb_table_name = aws_ssm_parameter.infra_dynamodb_table_name.arn
9
- records_function_arn = aws_ssm_parameter.lambda_records_function_arn.arn
10
- }
11
- }
12
-
13
- # Parameter Store Names
14
- output "parameter_names" {
15
- description = "作成されたParameter Storeパラメータの名前一覧"
16
- value = {
17
- records_api_url = aws_ssm_parameter.app_records_api_url.name
18
- dynamodb_table_name = aws_ssm_parameter.infra_dynamodb_table_name.name
19
- records_function_arn = aws_ssm_parameter.lambda_records_function_arn.name
20
- }
21
- }
22
-
23
- # Parameter Store Paths (same as names)
24
- output "parameter_paths" {
25
- description = "作成されたParameter Storeパラメータのパス一覧"
26
- value = {
27
- records_api_url = aws_ssm_parameter.app_records_api_url.name
28
- dynamodb_table_name = aws_ssm_parameter.infra_dynamodb_table_name.name
29
- records_function_arn = aws_ssm_parameter.lambda_records_function_arn.name
30
- }
31
- }
32
-
33
- # Note: IAMポリシーは各プロジェクトで個別に定義してください
34
- # 詳細は iam.tf のコメントを参照