Skip to content

Commit

Permalink
Bump version 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
frousselet committed Jan 30, 2023
1 parent 8a22f38 commit ba7a5a4
Show file tree
Hide file tree
Showing 16 changed files with 65 additions and 67 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 1.1.1 (Unreleased)
# 1.1.1 (January 30th, 2023)

BUG FIXES:

Expand All @@ -19,9 +19,9 @@ BUG FIXES:

DEPRECATION:

* resources/opennebula_cluster: deprecate `hosts`, `datastores`, `virtual_networks`
* resources/opennebula_datastore: deprecate `cluster_id`
* resources/opennebula_virtual_network: deprecate `clusters`
* resources/opennebula_cluster: deprecate `hosts`, `datastores`, `virtual_networks` (#389)
* resources/opennebula_datastore: deprecate `cluster_id` (#389)
* resources/opennebula_virtual_network: deprecate `clusters` (#389)

# 1.1.0 (December 6th, 2022)

Expand Down
6 changes: 3 additions & 3 deletions website/docs/r/cluster.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Provides an OpenNebula cluster resource.

```hcl
resource "opennebula_cluster" "example" {
name = "test"
name = "example"
hosts = [
0
Expand All @@ -31,9 +31,9 @@ resource "opennebula_cluster" "example" {
}
template_section {
name = "test"
name = "example"
elements = {
tag1 = "value1"
tag1 = "value"
}
}
Expand Down
6 changes: 3 additions & 3 deletions website/docs/r/datastore.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Create a custom datastore:

```hcl
resource "opennebula_datastore" "example" {
name = "test"
name = "example"
type = "image"
custom {
Expand All @@ -28,8 +28,8 @@ resource "opennebula_datastore" "example" {
tags = {
environment = "example"
}
}
}
}
```

## Argument Reference
Expand Down
8 changes: 4 additions & 4 deletions website/docs/r/group.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ resource "opennebula_group" "example" {
}
template_section {
name = "test"
elements = {
key1 = "value1"
}
name = "example"
elements = {
key1 = "value1"
}
}
}
Expand Down
5 changes: 2 additions & 3 deletions website/docs/r/host.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Create a KVM host with overcommit:

```hcl
resource "opennebula_host" "example" {
name = "test-kvm"
name = "example-kvm"
type = "kvm"
cluster_id = 0
Expand All @@ -38,7 +38,7 @@ Create a custom host:

```hcl
resource "opennebula_host" "example" {
name = "test-kvm"
name = "example-kvm"
type = "custom"
cluster_id = 0
Expand All @@ -53,7 +53,6 @@ resource "opennebula_host" "example" {
}
```


## Argument Reference

The following arguments are supported:
Expand Down
16 changes: 8 additions & 8 deletions website/docs/r/image.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ resource "opennebula_image" "example" {
}
template_section {
name = "test"
elements = {
key1 = "value1"
}
name = "example"
elements = {
key1 = "value1"
}
}
}
```
Expand All @@ -75,10 +75,10 @@ resource "opennebula_image" "example" {
}
template_section {
name = "test"
elements = {
key1 = "value1"
}
name = "example"
elements = {
key1 = "value"
}
}
}
```
Expand Down
8 changes: 4 additions & 4 deletions website/docs/r/security_group.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ resource "opennebula_security_group" "example" {
}
template_section {
name = "test"
elements = {
key1 = "value1"
}
name = "example"
elements = {
key1 = "value1"
}
}
}
```
Expand Down
8 changes: 4 additions & 4 deletions website/docs/r/template.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ resource "opennebula_template" "example" {
}
template_section {
name = "test"
elements = {
key1 = "value1"
}
name = "example"
elements = {
key1 = "value1"
}
}
}
```
Expand Down
8 changes: 4 additions & 4 deletions website/docs/r/user.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ resource "opennebula_user" "example" {
}
template_section {
name = "test"
elements = {
key1 = "value1"
}
name = "example"
elements = {
key1 = "value1"
}
}
}
```
Expand Down
8 changes: 4 additions & 4 deletions website/docs/r/virtual_machine.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ resource "opennebula_virtual_machine" "example" {
}
template_section {
name = "test"
elements = {
key1 = "value1"
}
name = "example"
elements = {
key1 = "value1"
}
}
}
```
Expand Down
8 changes: 4 additions & 4 deletions website/docs/r/virtual_machine_group.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ resource "opennebula_virtual_machine_group" "example" {
}
template_section {
name = "test"
elements = {
key1 = "value1"
}
name = "example"
elements = {
key1 = "value1"
}
}
}
```
Expand Down
8 changes: 4 additions & 4 deletions website/docs/r/virtual_network.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ resource "opennebula_virtual_network" "example" {
}
template_section {
name = "test"
elements = {
key1 = "value1"
}
name = "example"
elements = {
key1 = "value1"
}
}
}
```
Expand Down
11 changes: 5 additions & 6 deletions website/docs/r/virtual_network_address_range.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ Provides an OpenNebula virtual network address range resource. When applied, a n
## Example Usage

```hcl
resource "opennebula_virtual_network" "test" {
name = "test-virtual_network"
resource "opennebula_virtual_network" "example" {
name = "example-virtual_network"
type = "bridge"
bridge = "onebr"
mtu = 1500
Expand All @@ -35,16 +35,16 @@ resource "opennebula_virtual_network" "test" {
clusters = [0]
tags = {
env = "prod"
customer = "test"
customer = "example"
}
lifecycle {
ignore_changes = [ar, hold_ips]
}
}
resource "opennebula_virtual_network_address_range" "test" {
virtual_network_id = opennebula_virtual_network.test.id
resource "opennebula_virtual_network_address_range" "example" {
virtual_network_id = opennebula_virtual_network.example.id
ar_type = "IP4"
mac = "02:00:ac:10:64:6e"
size = 15
Expand Down Expand Up @@ -78,7 +78,6 @@ The following attribute are exported:

## Import


`opennebula_virtual_network_address_range` can be imported using a composed ID:

```sh
Expand Down
8 changes: 4 additions & 4 deletions website/docs/r/virtual_router.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ resource "opennebula_virtual_router" "example" {
}
template_section {
name = "test"
elements = {
key1 = "value1"
}
name = "example"
elements = {
key1 = "value1"
}
}
}
```
Expand Down
8 changes: 4 additions & 4 deletions website/docs/r/virtual_router_instance.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ resource "opennebula_virtual_router_instance" "example" {
}
template_section {
name = "test1"
elements = {
key1 = "value1"
}
name = "exmaple"
elements = {
key1 = "value1"
}
}
}
```
Expand Down
8 changes: 4 additions & 4 deletions website/docs/r/virtual_router_instance_template.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ resource "opennebula_virtual_router_instance_template" "example" {
}
template_section {
name = "test"
elements = {
key1 = "value1"
}
name = "example"
elements = {
key1 = "value1"
}
}
}
```
Expand Down

0 comments on commit ba7a5a4

Please sign in to comment.