-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
51 changed files
with
1,097 additions
and
289 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
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,42 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "hpegl_vmaas_edge_cluster Data Source - terraform-provider-hpegl" | ||
subcategory: "" | ||
description: |- | ||
The hpeglvmaasedgecluster data source can be used to discover the Provider ID of a hpegl vmaas Edge cluster. | ||
This can then be used with resources or data sources that require a hpeglvmaasedgecluster | ||
--- | ||
|
||
# hpegl_vmaas_edge_cluster (Data Source) | ||
|
||
The hpegl_vmaas_edge_cluster data source can be used to discover the Provider ID of a hpegl vmaas Edge cluster. | ||
This can then be used with resources or data sources that require a hpegl_vmaas_edge_cluster | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
# (C) Copyright 2021 Hewlett Packard Enterprise Development LP | ||
data "hpegl_vmaas_edge_cluster" "tf_edge_cluster" { | ||
name = "nsx_edge_cluster" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- **name** (String) Name of the Edge Cluster as it appears on GLPC Portal. If there is no Edge Cluster with this name, a 'NOT FOUND' error will returned. | ||
|
||
### Optional | ||
|
||
- **id** (String) The ID of this resource. | ||
|
||
### Read-Only | ||
|
||
- **external_id** (String) | ||
- **internal_id** (String) | ||
- **provider_id** (String) ProviderId of the Edge Cluster. Use the provider_id as EdgeCluster while creating NSX-T Router | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "hpegl_vmaas_network_domain Data Source - terraform-provider-hpegl" | ||
subcategory: "" | ||
description: |- | ||
The hpeglvmaasnetworkdomain data source can be used to discover the ID of a hpeglvmaasnetworkdomain. | ||
This can then be used with resources or data sources that require a hpeglvmaasnetworkdomain | ||
such as the hpeglvmaas_network | ||
--- | ||
|
||
# hpegl_vmaas_network_domain (Data Source) | ||
|
||
The hpegl_vmaas_network_domain data source can be used to discover the ID of a hpegl_vmaas_network_domain. | ||
This can then be used with resources or data sources that require a hpegl_vmaas_network_domain | ||
such as the hpegl_vmaas_network | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
# (C) Copyright 2021 Hewlett Packard Enterprise Development LP | ||
data "hpegl_vmaas_network_domain" "tf_domain" { | ||
name = "test_domain" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- **name** (String) Name of the network domain as it appears on GLPC Portal. If there is no network domain with this name, a 'NOT FOUND' error will returned. | ||
|
||
### Optional | ||
|
||
- **id** (String) The ID of this resource. | ||
|
||
### Read-Only | ||
|
||
- **active** (Boolean) Flag denotes active domain or not | ||
|
||
|
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,38 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "hpegl_vmaas_network_proxy Data Source - terraform-provider-hpegl" | ||
subcategory: "" | ||
description: |- | ||
The hpeglvmaasnetworkproxy data source can be used to discover the ID of a hpeglvmaasnetworkproxy. | ||
This can then be used with resources or data sources that require a hpeglvmaasnetworkproxy, | ||
such as the hpeglvmaas_network resource (for creating non NSX-T segments). | ||
--- | ||
|
||
# hpegl_vmaas_network_proxy (Data Source) | ||
|
||
The hpegl_vmaas_network_proxy data source can be used to discover the ID of a hpegl_vmaas_network_proxy. | ||
This can then be used with resources or data sources that require a hpegl_vmaas_network_proxy, | ||
such as the hpegl_vmaas_network resource (for creating non NSX-T segments). | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
# (C) Copyright 2021 Hewlett Packard Enterprise Development LP | ||
data "hpegl_vmaas_network_proxy" "tf_proxy" { | ||
name = "test_proxy" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- **name** (String) Name of the network proxy | ||
|
||
### Optional | ||
|
||
- **id** (String) The ID of this resource. | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "hpegl_vmaas_router Data Source - terraform-provider-hpegl" | ||
subcategory: "" | ||
description: |- | ||
The hpeglvmaasrouter data source can be used to discover the ID of a hpegl vmaas router. | ||
This can then be used with resources or data sources that require a hpeglvmaasrouter, | ||
such as the hpeglvmaasrouter resource. | ||
--- | ||
|
||
# hpegl_vmaas_router (Data Source) | ||
|
||
The hpegl_vmaas_router data source can be used to discover the ID of a hpegl vmaas router. | ||
This can then be used with resources or data sources that require a hpegl_vmaas_router, | ||
such as the hpegl_vmaas_router resource. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
# (C) Copyright 2021 Hewlett Packard Enterprise Development LP | ||
data "hpegl_vmaas_router" "tier0_router" { | ||
name = "tier0_gateway" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- **name** (String) Name of the Router as it appears on GLPC Portal. If there is no Router with this name, a 'NOT FOUND' error will returned. | ||
|
||
### Optional | ||
|
||
- **id** (String) The ID of this resource. | ||
|
||
### Read-Only | ||
|
||
- **interfaces** (List of Object) Interface Configuration (see [below for nested schema](#nestedatt--interfaces)) | ||
- **provider_id** (String) Provider ID of the given router/gateway. This field can be used as connected_gateway in hpegl_vmaas_network | ||
|
||
<a id="nestedatt--interfaces"></a> | ||
### Nested Schema for `interfaces` | ||
|
||
Read-Only: | ||
|
||
- **cidr** (String) | ||
- **id** (Number) | ||
- **source_addresses** (String) | ||
|
||
|
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,42 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "hpegl_vmaas_transport_zone Data Source - terraform-provider-hpegl" | ||
subcategory: "" | ||
description: |- | ||
The hpeglvmaastransportzone data source can be used to discover the ID of a hpegl vmaas transport zone. | ||
This can then be used with resources or data sources that require a hpeglvmaastransportzone | ||
--- | ||
|
||
# hpegl_vmaas_transport_zone (Data Source) | ||
|
||
The hpegl_vmaas_transport_zone data source can be used to discover the ID of a hpegl vmaas transport zone. | ||
This can then be used with resources or data sources that require a hpegl_vmaas_transport_zone | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
# (C) Copyright 2021 Hewlett Packard Enterprise Development LP | ||
data "hpegl_vmaas_transport_zone" "tf_zone" { | ||
name = "nsx_transport_zone_overlay" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- **name** (String) Name of the transport zone as it appears on GLPC Portal. If there is no transport zone with this name, a 'NOT FOUND' error will returned. | ||
|
||
### Optional | ||
|
||
- **id** (String) The ID of this resource. | ||
|
||
### Read-Only | ||
|
||
- **external_id** (String) | ||
- **internal_id** (String) | ||
- **provider_id** (String) scope_id of the transport zone. Use the scope_id as transport zone while creating network | ||
|
||
|
Oops, something went wrong.