From a22df8065b47383529f15ef558301f08b0730780 Mon Sep 17 00:00:00 2001 From: Emerson Hardisty Date: Mon, 23 Sep 2024 13:49:02 +0100 Subject: [PATCH] Update release to v0.8.30 (#275) --- DEVELOPMENT.md | 2 +- GNUmakefile | 2 +- README.md | 2 +- docs/index.md | 2 +- examples/data-sources/main.tf | 2 +- examples/provider/provider.tf | 2 +- examples/resources/main.tf | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 9189934..9f13381 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.29" + version = "0.8.30" source = "terraform-provider-aquasec/aquasec/aquasec" } } diff --git a/GNUmakefile b/GNUmakefile index 92909f3..3340940 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -6,7 +6,7 @@ HOSTNAME := github.com NAMESPACE := aquasec NAME := aquasec BINARY := terraform-provider-${NAME} -VERSION := 0.8.29 +VERSION := 0.8.30 OS_ARCH := $(shell go env GOOS)_$(shell go env GOARCH) default: build diff --git a/README.md b/README.md index 220b139..46212e2 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.29" + version = "0.8.30" source = "aquasecurity/aquasec" } } diff --git a/docs/index.md b/docs/index.md index e86a0bd..bd8145e 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.29" + version = "0.8.30" source = "aquasecurity/aquasec" } } diff --git a/examples/data-sources/main.tf b/examples/data-sources/main.tf index 040cf09..e25caab 100644 --- a/examples/data-sources/main.tf +++ b/examples/data-sources/main.tf @@ -1,7 +1,7 @@ terraform { required_providers { aquasec = { - // version = "0.8.29" + // version = "0.8.30" source = "aquasecurity/aquasec" } } diff --git a/examples/provider/provider.tf b/examples/provider/provider.tf index 3c3a6ed..87698b1 100644 --- a/examples/provider/provider.tf +++ b/examples/provider/provider.tf @@ -1,7 +1,7 @@ terraform { required_providers { aquasec = { - version = "0.8.29" + version = "0.8.30" source = "aquasecurity/aquasec" } } diff --git a/examples/resources/main.tf b/examples/resources/main.tf index 55cae7b..e491e48 100644 --- a/examples/resources/main.tf +++ b/examples/resources/main.tf @@ -1,7 +1,7 @@ terraform { required_providers { aquasec = { - // version = "0.8.29" + // version = "0.8.30" source = "aquasecurity/aquasec" } }