From 328d8096a48ec948195fd07325880f4a0130c8c1 Mon Sep 17 00:00:00 2001 From: yossi gilad Date: Sun, 22 Jan 2023 09:00:16 +0200 Subject: [PATCH] inc version --- DEVELOPMENT.md | 4 ++-- 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, 8 insertions(+), 8 deletions(-) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 106554a..2ad56ac 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -32,7 +32,7 @@ git clone https://github.com/aquasecurity/terraform-provider-aquasec.git cd terraform-provider-aquasec -git checkout v0.8.17 +git checkout v0.8.20 ``` **Build and install the provider** @@ -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.17" + version = "0.8.20" source = "terraform-provider-aquasec/aquasec/aquasec" } } diff --git a/GNUmakefile b/GNUmakefile index a3f1565..f052ac2 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -6,7 +6,7 @@ HOSTNAME := github.com NAMESPACE := aquasec NAME := aquasec BINARY := terraform-provider-${NAME} -VERSION := 0.8.19 +VERSION := 0.8.20 OS_ARCH := $(shell go env GOOS)_$(shell go env GOARCH) default: build diff --git a/README.md b/README.md index 64514d6..d0ba83f 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ To quickly get started using the Aquasec provider for Terraform, configure the p terraform { required_providers { aquasec = { - version = "0.8.17" + version = "0.8.20" source = "aquasecurity/aquasec" } } diff --git a/docs/index.md b/docs/index.md index fbaa68b..44ad408 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.17" + version = "0.8.20" source = "aquasecurity/aquasec" } } diff --git a/examples/data-sources/main.tf b/examples/data-sources/main.tf index 9ad5753..3384642 100644 --- a/examples/data-sources/main.tf +++ b/examples/data-sources/main.tf @@ -1,7 +1,7 @@ terraform { required_providers { aquasec = { - // version = "0.8.17" + // version = "0.8.20" source = "aquasecurity/aquasec" } } diff --git a/examples/provider/provider.tf b/examples/provider/provider.tf index 6d33a1b..4cdec91 100644 --- a/examples/provider/provider.tf +++ b/examples/provider/provider.tf @@ -1,7 +1,7 @@ terraform { required_providers { aquasec = { - version = "0.8.17" + version = "0.8.20" source = "aquasecurity/aquasec" } } diff --git a/examples/resources/main.tf b/examples/resources/main.tf index dca774d..a8e1e00 100644 --- a/examples/resources/main.tf +++ b/examples/resources/main.tf @@ -1,7 +1,7 @@ terraform { required_providers { aquasec = { - // version = "0.8.17" + // version = "0.8.20" source = "aquasecurity/aquasec" } }