File tree Expand file tree Collapse file tree 4 files changed +21
-10
lines changed Expand file tree Collapse file tree 4 files changed +21
-10
lines changed Original file line number Diff line number Diff line change @@ -18,9 +18,9 @@ Terraform module for Amazon Bedrock Agent resources
18
18
19
19
| Name | Version |
20
20
| ------| ---------|
21
- | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | ~ > 5.73 |
22
- | <a name =" provider_opensearch " ></a > [ opensearch] ( #provider\_ opensearch ) | ~ > 2.2 |
23
- | <a name =" provider_time " ></a > [ time] ( #provider\_ time ) | ~ > 0.12 |
21
+ | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | ~ > 5.94 |
22
+ | <a name =" provider_opensearch " ></a > [ opensearch] ( #provider\_ opensearch ) | ~ > 2.3 |
23
+ | <a name =" provider_time " ></a > [ time] ( #provider\_ time ) | ~ > 0.13 |
24
24
25
25
<!-- TFDOCS_PROVIDER_END -->
26
26
@@ -30,9 +30,9 @@ Terraform module for Amazon Bedrock Agent resources
30
30
| Name | Version |
31
31
| ------| ---------|
32
32
| <a name =" requirement_terraform " ></a > [ terraform] ( #requirement\_ terraform ) | ~ > 1.3 |
33
- | <a name =" requirement_aws " ></a > [ aws] ( #requirement\_ aws ) | ~ > 5.73 |
34
- | <a name =" requirement_opensearch " ></a > [ opensearch] ( #requirement\_ opensearch ) | ~ > 2.2 |
35
- | <a name =" requirement_time " ></a > [ time] ( #requirement\_ time ) | ~ > 0.12 |
33
+ | <a name =" requirement_aws " ></a > [ aws] ( #requirement\_ aws ) | ~ > 5.94 |
34
+ | <a name =" requirement_opensearch " ></a > [ opensearch] ( #requirement\_ opensearch ) | ~ > 2.3 |
35
+ | <a name =" requirement_time " ></a > [ time] ( #requirement\_ time ) | ~ > 0.13 |
36
36
37
37
<!-- TFDOCS_REQUIREMENTS_END -->
38
38
Original file line number Diff line number Diff line change @@ -369,5 +369,9 @@ resource "aws_bedrockagent_agent_alias" "this" {
369
369
agent_version = aws_bedrockagent_agent. this . agent_version
370
370
}
371
371
372
+ lifecycle {
373
+ ignore_changes = [routing_configuration ]
374
+ }
375
+
372
376
depends_on = [aws_bedrockagent_agent_knowledge_base_association . this ]
373
377
}
Original file line number Diff line number Diff line change @@ -15,5 +15,12 @@ output "agent" {
15
15
16
16
output "agent_alias" {
17
17
description = " Information about created Bedrock Agent Alias"
18
- value = aws_bedrockagent_agent_alias. this
18
+ value = {
19
+ id = aws_bedrockagent_agent_alias.this.id
20
+ agent_id = aws_bedrockagent_agent_alias.this.agent_id
21
+ description = aws_bedrockagent_agent_alias.this.description
22
+ agent_alias_arn = aws_bedrockagent_agent_alias.this.agent_alias_arn
23
+ agent_alias_id = aws_bedrockagent_agent_alias.this.agent_alias_id
24
+ agent_alias_name = aws_bedrockagent_agent_alias.this.agent_alias_name
25
+ }
19
26
}
Original file line number Diff line number Diff line change @@ -3,15 +3,15 @@ terraform {
3
3
required_providers {
4
4
aws = {
5
5
source = " hashicorp/aws"
6
- version = " ~> 5.73 "
6
+ version = " ~> 5.94 "
7
7
}
8
8
opensearch = {
9
9
source = " opensearch-project/opensearch"
10
- version = " ~> 2.2 "
10
+ version = " ~> 2.3 "
11
11
}
12
12
time = {
13
13
source = " hashicorp/time"
14
- version = " ~> 0.12 "
14
+ version = " ~> 0.13 "
15
15
}
16
16
}
17
17
}
You can’t perform that action at this time.
0 commit comments