From bccc5caa827d69c9b48b4b9482c01104e2cb2cbd Mon Sep 17 00:00:00 2001 From: Alexa Perlov Date: Fri, 27 Dec 2024 22:28:20 -0500 Subject: [PATCH 1/3] bumping version to 0.0.6 --- .header.md | 8 ++++---- README.md | 8 ++++---- VERSION | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.header.md b/.header.md index 02257d1..517f187 100644 --- a/.header.md +++ b/.header.md @@ -26,7 +26,7 @@ provider "opensearch" { module "bedrock" { source = "aws-ia/bedrock/aws" - version = "0.0.5" + version = "0.0.6" create_kb = true create_default_kb = true foundation_model = "anthropic.claude-v2" @@ -59,7 +59,7 @@ The following example creates an Agent with a simple instruction and without any ```hcl module "bedrock" { source = "aws-ia/bedrock/aws" - version = "0.0.5" + version = "0.0.6" foundation_model = "anthropic.claude-v2" instruction = "You are an automotive assisant who can provide detailed information about cars to a customer." } @@ -70,7 +70,7 @@ To create an Agent with a default Knowledge Base you simply set `create_kb` and ```hcl module "bedrock" { source = "aws-ia/bedrock/aws" - version = "0.0.5" + version = "0.0.6" create_kb = true create_default_kb = true foundation_model = "anthropic.claude-v2" @@ -109,7 +109,7 @@ You can create a Guardrail by setting `create_guardrail` to true and passing in ```hcl module "bedrock" { source = "aws-ia/bedrock/aws" - version = "0.0.5" + version = "0.0.6" create_kb = false create_default_kb = false create_guardrail = true diff --git a/README.md b/README.md index 17a4554..2c1da3e 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ provider "opensearch" { module "bedrock" { source = "aws-ia/bedrock/aws" - version = "0.0.5" + version = "0.0.6" create_kb = true create_default_kb = true foundation_model = "anthropic.claude-v2" @@ -60,7 +60,7 @@ The following example creates an Agent with a simple instruction and without any ```hcl module "bedrock" { source = "aws-ia/bedrock/aws" - version = "0.0.5" + version = "0.0.6" foundation_model = "anthropic.claude-v2" instruction = "You are an automotive assisant who can provide detailed information about cars to a customer." } @@ -71,7 +71,7 @@ To create an Agent with a default Knowledge Base you simply set `create_kb` and ```hcl module "bedrock" { source = "aws-ia/bedrock/aws" - version = "0.0.5" + version = "0.0.6" create_kb = true create_default_kb = true foundation_model = "anthropic.claude-v2" @@ -110,7 +110,7 @@ You can create a Guardrail by setting `create_guardrail` to true and passing in ```hcl module "bedrock" { source = "aws-ia/bedrock/aws" - version = "0.0.5" + version = "0.0.6" create_kb = false create_default_kb = false create_guardrail = true diff --git a/VERSION b/VERSION index 5c314e5..77cada2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v0.0.5 +v0.0.6 From b7289c580a8bc2ea6a943c463732314c0adcada5 Mon Sep 17 00:00:00 2001 From: Alexa Perlov Date: Fri, 27 Dec 2024 22:37:40 -0500 Subject: [PATCH 2/3] removing s3 data source vector invalid block --- data-source.tf | 1 - 1 file changed, 1 deletion(-) diff --git a/data-source.tf b/data-source.tf index 3ae79b4..a76f813 100644 --- a/data-source.tf +++ b/data-source.tf @@ -80,7 +80,6 @@ resource "aws_bedrockagent_data_source" "knowledge_base_ds" { inclusion_prefixes = var.s3_inclusion_prefixes } } - vector_ingestion_configuration = var.create_vector_ingestion_configuration == false ? null : local.vector_ingestion_configuration } resource "aws_cloudwatch_log_group" "knowledge_base_cwl" { From 7362ffd3fd543dcabb379e5596df2b9c99a27467 Mon Sep 17 00:00:00 2001 From: Alexa Perlov Date: Mon, 30 Dec 2024 10:31:24 -0500 Subject: [PATCH 3/3] force commit --- data-source.tf | 1 - 1 file changed, 1 deletion(-) diff --git a/data-source.tf b/data-source.tf index a76f813..fbf1806 100644 --- a/data-source.tf +++ b/data-source.tf @@ -65,7 +65,6 @@ resource "awscc_s3_bucket" "s3_data_source" { key = "Name" value = "S3 Data Source" }] - } resource "aws_bedrockagent_data_source" "knowledge_base_ds" {