Skip to content

Commit

Permalink
Changelog and some test changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rschmied committed Jul 30, 2024
1 parent 1056b1c commit 3bf6e97
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 16 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Lists the changes in the provider.

## Version 0.8.1

- updated documentation, examples and tests to match code changes.

## Version 0.8.0

- update gocmlclient to 0.1.0, supporting CML 2.7.0
Expand Down
32 changes: 16 additions & 16 deletions internal/provider/resource/lifecycle/lifecycle_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -527,13 +527,13 @@ resource "cml2_link" "l2" {
resource "cml2_lifecycle" "top" {
lab_id = cml2_lab.this.id
depends_on = [
cml2_node.ext.id,
cml2_node.ums.id,
cml2_node.r1.id,
cml2_node.r2.id,
cml2_link.l0.id,
cml2_link.l1.id,
cml2_link.l2.id,
cml2_node.ext,
cml2_node.ums,
cml2_node.r1,
cml2_node.r2,
cml2_link.l0,
cml2_link.l1,
cml2_link.l2,
]
}
`, cfg)
Expand Down Expand Up @@ -602,15 +602,15 @@ resource "cml2_link" "l3" {
resource "cml2_lifecycle" "top" {
lab_id = cml2_lab.this.id
depends_on = [
cml2_node.ext.id,
cml2_node.ums.id,
cml2_node.r1.id,
cml2_node.r2.id,
cml2_node.r3.id,
cml2_link.l0.id,
cml2_link.l1.id,
cml2_link.l2.id,
cml2_link.l3.id,
cml2_node.ext,
cml2_node.ums,
cml2_node.r1,
cml2_node.r2,
cml2_node.r3,
cml2_link.l0,
cml2_link.l1,
cml2_link.l2,
cml2_link.l3,
]
}
`, cfg)
Expand Down

0 comments on commit 3bf6e97

Please sign in to comment.