Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump version to 0.0.6 #52

Merged
merged 4 commits into from
Jan 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .header.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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."
}
Expand All @@ -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"
Expand Down Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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."
}
Expand All @@ -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"
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.0.5
v0.0.6
1 change: 0 additions & 1 deletion data-source.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down