-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 18-new-resource-vcd
- Loading branch information
Showing
7 changed files
with
449 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "cloudavenue_edge_gateway Resource - cloudavenue" | ||
subcategory: "" | ||
description: |- | ||
The Edge Gateway resource allows you to create and manage Edge Gateways in CloudAvenue. | ||
--- | ||
|
||
# cloudavenue_edge_gateway (Resource) | ||
|
||
The Edge Gateway resource allows you to create and manage Edge Gateways in CloudAvenue. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource "cloudavenue_edge_gateway" "example" { | ||
vdc_name = "VDC_Frangipane" | ||
tier0_vrf_id = "vrf-1" | ||
owner_type = "vdc" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `owner_name` (String) The name of the owner of the Edge Gateway. | ||
- `owner_type` (String) The type of the owner of the Edge Gateway (vdc|vdc-group). | ||
- `tier0_vrf_id` (String) The ID of the Tier0 VRF to which the Edge Gateway will be attached. | ||
|
||
### Optional | ||
|
||
- `enable_load_balancing` (Boolean) | ||
- `timeouts` (Attributes) (see [below for nested schema](#nestedatt--timeouts)) | ||
|
||
### Read-Only | ||
|
||
- `description` (String) The description of the Edge Gateway. | ||
- `edge_id` (String) The ID of the Edge Gateway. | ||
- `edge_name` (String) The name of the Edge Gateway. | ||
- `id` (String) The ID of this resource. | ||
|
||
<a id="nestedatt--timeouts"></a> | ||
### Nested Schema for `timeouts` | ||
|
||
Optional: | ||
|
||
- `create` (String) | ||
- `read` (String) | ||
|
||
## Import | ||
|
||
Import is supported using the following syntax: | ||
|
||
```shell | ||
# use the edge-id to import the edge gateway | ||
terraform import cloudavenue_edge_gateway.example 12345678-1234-1234-1234-123456789012 | ||
``` |
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,2 @@ | ||
# use the edge-id to import the edge gateway | ||
terraform import cloudavenue_edge_gateway.example 12345678-1234-1234-1234-123456789012 |
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,5 @@ | ||
resource "cloudavenue_edge_gateway" "example" { | ||
vdc_name = "VDC_Frangipane" | ||
tier0_vrf_id = "vrf-1" | ||
owner_type = "vdc" | ||
} |
Oops, something went wrong.