Skip to content

Commit ddfefbd

Browse files
increasing release version
1 parent 7d89b99 commit ddfefbd

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

GNUmakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ HOSTNAME := github.com
66
NAMESPACE := aquasec
77
NAME := aquasec
88
BINARY := terraform-provider-${NAME}
9-
VERSION := 0.8.17
9+
VERSION := 0.8.18
1010
OS_ARCH := $(shell go env GOOS)_$(shell go env GOARCH)
1111

1212
default: build

aquasec/data_aqua_labels_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ func testAccCheckAquasecAquaLabelsDataSource(name, description string) string {
3333
}
3434
3535
data "aquasec_aqua_labels" "test_aqua_labels" {
36+
depends_on = [aquasec_aqua_label.new]
3637
}
3738
`, name, description)
3839

aquasec/resource_aqua_labels.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ import (
99

1010
func resourceAquaLabels() *schema.Resource {
1111
return &schema.Resource{
12-
Description: "The data source `aquasec_aqua_labels` provides a method to query all aqua labels within the Aqua account management." +
13-
"The fields returned from this query are detailed in the Schema section below.",
1412
Read: resourceAquaLabelRead,
1513
Create: resourceAquaLabelCreate,
1614
Update: resourceAquaLabelUpdate,

0 commit comments

Comments
 (0)