diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 9f13381..784b1f5 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -55,7 +55,7 @@ In order to test the provider installed locally, the provider block will have to terraform { required_providers { aquasec = { - version = "0.8.30" + version = "0.8.31" source = "terraform-provider-aquasec/aquasec/aquasec" } } diff --git a/GNUmakefile b/GNUmakefile index 3340940..fa6b31b 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -6,7 +6,7 @@ HOSTNAME := github.com NAMESPACE := aquasec NAME := aquasec BINARY := terraform-provider-${NAME} -VERSION := 0.8.30 +VERSION := 0.8.31 OS_ARCH := $(shell go env GOOS)_$(shell go env GOARCH) default: build diff --git a/README.md b/README.md index 46212e2..dbbe6aa 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ To quickly get started using the Aquasec provider for Terraform, configure the p terraform { required_providers { aquasec = { - version = "0.8.30" + version = "0.8.31" source = "aquasecurity/aquasec" } } diff --git a/docs/index.md b/docs/index.md index bd8145e..7eabe21 100644 --- a/docs/index.md +++ b/docs/index.md @@ -21,7 +21,7 @@ Use the navigation to the left to read about the available resources and data so terraform { required_providers { aquasec = { - version = "0.8.30" + version = "0.8.31" source = "aquasecurity/aquasec" } } diff --git a/examples/data-sources/main.tf b/examples/data-sources/main.tf index e25caab..a2f730f 100644 --- a/examples/data-sources/main.tf +++ b/examples/data-sources/main.tf @@ -1,7 +1,7 @@ terraform { required_providers { aquasec = { - // version = "0.8.30" + // version = "0.8.31" source = "aquasecurity/aquasec" } } diff --git a/examples/provider/provider.tf b/examples/provider/provider.tf index 87698b1..0e618ee 100644 --- a/examples/provider/provider.tf +++ b/examples/provider/provider.tf @@ -1,7 +1,7 @@ terraform { required_providers { aquasec = { - version = "0.8.30" + version = "0.8.31" source = "aquasecurity/aquasec" } } diff --git a/examples/resources/main.tf b/examples/resources/main.tf index e491e48..f1e50a4 100644 --- a/examples/resources/main.tf +++ b/examples/resources/main.tf @@ -1,7 +1,7 @@ terraform { required_providers { aquasec = { - // version = "0.8.30" + // version = "0.8.31" source = "aquasecurity/aquasec" } }