Skip to content

Commit

Permalink
datasource glesys_network documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
norrland committed Apr 17, 2023
1 parent 520c70d commit e2e115a
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions docs/data-sources/network.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "glesys_network Data Source - terraform-provider-glesys"
subcategory: ""
description: |-
Get information about a Network associated with your GleSYS Project.
---

# glesys_network (Data Source)

Get information about a Network associated with your GleSYS Project.

## Example Usage

```terraform
# glesys_dnsdomain datasource
data "glesys_network" "examplenet" {
name = "vl12345"
}
output "network_dc" {
value = data.glesys_network.examplenet.datacenter
}
```

<!-- schema generated by tfplugindocs -->
## Schema

### Required

- `id` (String) network ID.

### Read-Only

- `datacenter` (String) network datacenter.
- `description` (String) network description.
- `public` (String) network public, yes/no.


0 comments on commit e2e115a

Please sign in to comment.