diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 979b900..4280184 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.12.0 +git checkout v0.12.1 ``` **Build and install the provider** diff --git a/GNUmakefile b/GNUmakefile index 442de4f..a8b8b48 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -6,7 +6,7 @@ HOSTNAME := github.com NAMESPACE := aquasec NAME := aquasec BINARY := terraform-provider-${NAME} -VERSION := 0.12.0 +VERSION := 0.12.1 OS_ARCH := $(shell go env GOOS)_$(shell go env GOARCH) default: build diff --git a/README.md b/README.md index 58cd531..ff85a8f 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.12.0" + version = "0.12.1" source = "aquasecurity/aquasec" } } diff --git a/docs/index.md b/docs/index.md index 9324633..3fecc9e 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.12.0" + version = "0.12.1" source = "aquasecurity/aquasec" } } diff --git a/examples/data-sources/main.tf b/examples/data-sources/main.tf index 2cdde9b..64ef3cd 100644 --- a/examples/data-sources/main.tf +++ b/examples/data-sources/main.tf @@ -1,7 +1,7 @@ terraform { required_providers { aquasec = { - // version = "0.12.0" + // version = "0.12.1" source = "aquasecurity/aquasec" } } diff --git a/examples/main.tf b/examples/main.tf index 530faa6..b967832 100644 --- a/examples/main.tf +++ b/examples/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { aquasec = { source = "aquasecurity/aquasec" - version = "0.12.0" + version = "0.12.1" } } } diff --git a/examples/provider/provider.tf b/examples/provider/provider.tf index 859676e..29644ba 100644 --- a/examples/provider/provider.tf +++ b/examples/provider/provider.tf @@ -1,7 +1,7 @@ terraform { required_providers { aquasec = { - version = "0.12.0" + version = "0.12.1" source = "aquasecurity/aquasec" } } diff --git a/examples/resources/main.tf b/examples/resources/main.tf index 5090886..2363824 100644 --- a/examples/resources/main.tf +++ b/examples/resources/main.tf @@ -1,7 +1,7 @@ terraform { required_providers { aquasec = { - //version = "0.12.0" + //version = "0.12.1" source = "aquasecurity/aquasec" } }