You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description = "Endpoint for agent runtime communication"
45
22
}
46
23
```
47
24
@@ -51,21 +28,21 @@ The following arguments are required:
51
28
52
29
*`name` - (Required) Name of the agent runtime endpoint.
53
30
*`agent_runtime_id` - (Required) ID of the agent runtime this endpoint belongs to.
54
-
*`agent_runtime_version` - (Required) Version of the agent runtime to use for this endpoint.
55
31
56
32
The following arguments are optional:
57
33
58
34
*`region` - (Optional) Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the [provider configuration](https://registry.terraform.io/providers/hashicorp/aws/latest/docs#aws-configuration-reference).
35
+
*`agent_runtime_version` - (Optional) Version of the agent runtime to use for this endpoint.
59
36
*`description` - (Optional) Description of the agent runtime endpoint.
60
-
*`client_token` - (Optional) Unique identifier for request idempotency. If not provided, one will be generated automatically.
37
+
*`tags` - (Optional) Key-value map of resource tags. If configured with a provider [`default_tags` configuration block](https://registry.terraform.io/providers/hashicorp/aws/latest/docs#default_tags-configuration-block) present, tags with matching keys will overwrite those defined at the provider-level.
61
38
62
39
## Attribute Reference
63
40
64
41
This resource exports the following attributes in addition to the arguments above:
65
42
66
-
*`arn` - ARN of the Agent Runtime Endpoint.
43
+
*`agent_runtime_endoint_arn` - ARN of the Agent Runtime Endpoint.
67
44
*`agent_runtime_arn` - ARN of the associated Agent Runtime.
68
-
*`id` - Unique identifier of the Agent Runtime Endpoint.
45
+
*`tags_all` - A map of tags assigned to the resource, including those inherited from the provider [`default_tags` configuration block](https://registry.terraform.io/providers/hashicorp/aws/latest/docs#default_tags-configuration-block).
69
46
70
47
## Timeouts
71
48
@@ -77,7 +54,7 @@ This resource exports the following attributes in addition to the arguments abov
77
54
78
55
## Import
79
56
80
-
In Terraform v1.5.0 and later, use an [`import` block](https://developer.hashicorp.com/terraform/language/import) to import Bedrock AgentCore Agent Runtime Endpoint using the `agent_runtime_id` and `endpoint_name` separated by a comma. For example:
57
+
In Terraform v1.5.0 and later, use an [`import` block](https://developer.hashicorp.com/terraform/language/import) to import Bedrock AgentCore Agent Runtime Endpoint using the `agent_runtime_id` and `name` separated by a comma. For example:
81
58
82
59
```terraform
83
60
import {
@@ -86,7 +63,7 @@ import {
86
63
}
87
64
```
88
65
89
-
Using `terraform import`, import Bedrock AgentCore Agent Runtime Endpoint using the `agent_runtime_id` and `endpoint_name` separated by a comma. For example:
66
+
Using `terraform import`, import Bedrock AgentCore Agent Runtime Endpoint using the `agent_runtime_id` and `name` separated by a comma. For example:
0 commit comments