Skip to content

Commit f69a4b5

Browse files
Mirror from monorepo aecf823a (#718)
Automated mirror from monorepo commit `aecf823a704c8383556f258fcced45533923e10e`. This PR was automatically generated by the terraform provider mirroring workflow. Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 01b5978 commit f69a4b5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs/resources/connector_satellite_link.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Link a Connector to a Satellite.
1919

2020
- `connector_id` (String) The ID of the Connector to link to the satellite.
2121
- `satellite_id` (String) The ID of the Satellite to link to the connector.
22-
- `satellite_type` (String) The type of satellite being linked. Must be one of: `data_classifier` or `policy_data_loader`.
22+
- `satellite_type` (String) The type of satellite being linked. Must be one of: `ai`, `data_classifier` or `policy_data_loader`.
2323

2424
### Optional
2525

formal/resources/resource_connector_satellite_link.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,12 @@ func ResourceConnectorSatelliteLink() *schema.Resource {
4646
ForceNew: true,
4747
},
4848
"satellite_type": {
49-
Description: "The type of satellite being linked. Must be one of: `data_classifier` or `policy_data_loader`.",
49+
Description: "The type of satellite being linked. Must be one of: `ai`, `data_classifier` or `policy_data_loader`.",
5050
Type: schema.TypeString,
5151
Required: true,
5252
ForceNew: true,
5353
ValidateFunc: validation.StringInSlice([]string{
54+
"ai",
5455
"data_classifier",
5556
"policy_data_loader",
5657
}, false),

0 commit comments

Comments
 (0)