File tree 2 files changed +20
-16
lines changed
internal/provider/resource/lifecycle
2 files changed +20
-16
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Lists the changes in the provider.
4
4
5
+ ## Version 0.8.1
6
+
7
+ - updated documentation, examples and tests to match code changes.
8
+
5
9
## Version 0.8.0
6
10
7
11
- update gocmlclient to 0.1.0, supporting CML 2.7.0
Original file line number Diff line number Diff line change @@ -527,13 +527,13 @@ resource "cml2_link" "l2" {
527
527
resource "cml2_lifecycle" "top" {
528
528
lab_id = cml2_lab.this.id
529
529
depends_on = [
530
- cml2_node.ext.id ,
531
- cml2_node.ums.id ,
532
- cml2_node.r1.id ,
533
- cml2_node.r2.id ,
534
- cml2_link.l0.id ,
535
- cml2_link.l1.id ,
536
- cml2_link.l2.id ,
530
+ cml2_node.ext,
531
+ cml2_node.ums,
532
+ cml2_node.r1,
533
+ cml2_node.r2,
534
+ cml2_link.l0,
535
+ cml2_link.l1,
536
+ cml2_link.l2,
537
537
]
538
538
}
539
539
` , cfg )
@@ -602,15 +602,15 @@ resource "cml2_link" "l3" {
602
602
resource "cml2_lifecycle" "top" {
603
603
lab_id = cml2_lab.this.id
604
604
depends_on = [
605
- cml2_node.ext.id ,
606
- cml2_node.ums.id ,
607
- cml2_node.r1.id ,
608
- cml2_node.r2.id ,
609
- cml2_node.r3.id ,
610
- cml2_link.l0.id ,
611
- cml2_link.l1.id ,
612
- cml2_link.l2.id ,
613
- cml2_link.l3.id ,
605
+ cml2_node.ext,
606
+ cml2_node.ums,
607
+ cml2_node.r1,
608
+ cml2_node.r2,
609
+ cml2_node.r3,
610
+ cml2_link.l0,
611
+ cml2_link.l1,
612
+ cml2_link.l2,
613
+ cml2_link.l3,
614
614
]
615
615
}
616
616
` , cfg )
You can’t perform that action at this time.
0 commit comments