-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat/iopr 4336 Add resource virtual_access_node (#37)
* resource virtual access node: wip * resource virtual access node --------- Co-authored-by: Pauline ESPALIEU <[email protected]>
- Loading branch information
Pauline Espalieu
and
Pauline ESPALIEU
authored
Sep 18, 2024
1 parent
ac184a3
commit 588f3ca
Showing
8 changed files
with
440 additions
and
7 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
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,64 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "autonomi_virtual_access_node Resource - autonomi" | ||
subcategory: "" | ||
description: |- | ||
Manages a virtual access node resource. | ||
Virtual access node resource allows you to create, modify and delete Autonomi virtual access nodes. | ||
Autonomi virtual access node allows you to easily connect to your datacenters assets via a virtual connection through Megaport / Equinix connections (virtual access nodes). | ||
--- | ||
|
||
# autonomi_virtual_access_node (Resource) | ||
|
||
Manages a virtual access node resource. | ||
Virtual access node resource allows you to create, modify and delete Autonomi virtual access nodes. | ||
Autonomi virtual access node allows you to easily connect to your datacenters assets via a virtual connection through Megaport / Equinix connections (virtual access nodes). | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource "autonomi_virtual_access_node" "virtual_access_node" { | ||
name = "Virtual Access Node created with Terraform" | ||
workspace_id = autonomi_workspace.workspace.id | ||
product = { | ||
sku = "valid_sku" | ||
} | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `name` (String) Name of the access node | ||
- `product` (Attributes) (see [below for nested schema](#nestedatt--product)) | ||
- `workspace_id` (String) ID of the workspace to which the access node belongs. | ||
|
||
### Read-Only | ||
|
||
- `administrative_state` (String) Administrative state of the access node [creation_pending, creation_proceed, creation_error, | ||
deployed, delete_pending, delete_proceed, delete_error] | ||
- `created_at` (String) Creation date of the access node | ||
- `deployed_at` (String) Deployment date of the access node | ||
- `id` (String) ID of the access node, set after creation | ||
- `service_key` (Attributes) Access node's service key (see [below for nested schema](#nestedatt--service_key)) | ||
- `type` (String) Type of the node [access] | ||
- `updated_at` (String) Update date of the access node | ||
- `vlan` (Number) Vlan of the access node | ||
|
||
<a id="nestedatt--product"></a> | ||
### Nested Schema for `product` | ||
|
||
Required: | ||
|
||
- `sku` (String) ID of the product | ||
|
||
<a id="nestedatt--service_key"></a> | ||
### Nested Schema for `service_key` | ||
|
||
Read-Only: | ||
|
||
- `expiration_date` (String) expiration date of the service key | ||
- `id` (String) ID of the service key | ||
- `name` (String) name of the service key |
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,7 @@ | ||
resource "autonomi_virtual_access_node" "virtual_access_node" { | ||
name = "Virtual Access Node created with Terraform" | ||
workspace_id = autonomi_workspace.workspace.id | ||
product = { | ||
sku = "valid_sku" | ||
} | ||
} |
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
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
Oops, something went wrong.