https://github.com/mastodon/terraform-ovh-network
Module to create a private virtual network in OVH's public cloud
https://github.com/mastodon/terraform-ovh-network
Last synced: 6 months ago
JSON representation
Module to create a private virtual network in OVH's public cloud
- Host: GitHub
- URL: https://github.com/mastodon/terraform-ovh-network
- Owner: mastodon
- Created: 2024-05-10T21:14:41.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-10T22:06:31.000Z (over 1 year ago)
- Last Synced: 2025-03-28T19:38:38.062Z (6 months ago)
- Language: HCL
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# terraform-ovh-network
Module to create a private virtual network in OVH's public cloud.
## Requirements
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.0.0 |## Providers
| Name | Version |
|------|---------|
| [ovh](#provider\_ovh) | 0.44.0 |## Modules
No modules.
## Resources
| Name | Type |
|------|------|
| [ovh_cloud_project_gateway.gateway](https://registry.terraform.io/providers/ovh/ovh/latest/docs/resources/cloud_project_gateway) | resource |
| [ovh_cloud_project_network_private.net](https://registry.terraform.io/providers/ovh/ovh/latest/docs/resources/cloud_project_network_private) | resource |
| [ovh_cloud_project_network_private_subnet.subnet](https://registry.terraform.io/providers/ovh/ovh/latest/docs/resources/cloud_project_network_private_subnet) | resource |## Inputs
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| [network\_cidr](#input\_network\_cidr) | Subnet to assign to the private network. | `string` | n/a | yes |
| [network\_gateway\_model](#input\_network\_gateway\_model) | Size of the gateway to use for the private network. | `string` | `"s"` | no |
| [network\_name](#input\_network\_name) | Name to give the private network. | `string` | n/a | yes |
| [project\_id](#input\_project\_id) | The ID of the Public Cloud project the resources will be created in. | `string` | n/a | yes |
| [region](#input\_region) | Region in which to create the various resources. | `string` | `"DE1"` | no |## Outputs
| Name | Description |
|------|-------------|
| [id](#output\_id) | ID of the private network created. |
| [name](#output\_name) | Name of the private network created. |
| [vlan\_id](#output\_vlan\_id) | VLAN ID of the private network created. |