-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #137 from volcengine/feat/opt
Feat/opt
- Loading branch information
Showing
10 changed files
with
48 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
resource "volcengine_transit_router_grant_rule" "foo" { | ||
transit_router_id = "tr-2bzy39uy6u3282dx0efxiqyq0" | ||
grant_account_id = "2000005141" | ||
grant_account_id = "200000xxxx" | ||
description = "tf-test" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
website/docs/r/transit_router_shared_transit_router_state.html.markdown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
subcategory: "TRANSIT_ROUTER" | ||
layout: "volcengine" | ||
page_title: "Volcengine: volcengine_transit_router_shared_transit_router_state" | ||
sidebar_current: "docs-volcengine-resource-transit_router_shared_transit_router_state" | ||
description: |- | ||
Provides a resource to manage transit router shared transit router state | ||
--- | ||
# volcengine_transit_router_shared_transit_router_state | ||
Provides a resource to manage transit router shared transit router state | ||
## Example Usage | ||
```hcl | ||
resource "volcengine_transit_router_shared_transit_router_state" "foo" { | ||
transit_router_id = "tr-2bzy39uy6u3282dx0efxiqyq0" | ||
action = "Reject" | ||
} | ||
``` | ||
## Argument Reference | ||
The following arguments are supported: | ||
* `action` - (Required) `Accept` or `Reject` the shared transit router. | ||
* `transit_router_id` - (Required, ForceNew) The id of the transit router. | ||
|
||
## Attributes Reference | ||
In addition to all arguments above, the following attributes are exported: | ||
* `id` - ID of the resource. | ||
|
||
|
||
|
||
## Import | ||
SharedTransitRouterState can be imported using the id, e.g. | ||
``` | ||
$ terraform import volcengine_transit_router_shared_transit_router_state.default state:transitRouterId | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters