From 19c711066d592eae09f987ad5fc8b460f15b5175 Mon Sep 17 00:00:00 2001 From: Sarvodaya Kumar Date: Tue, 25 Nov 2025 21:29:01 +0530 Subject: [PATCH] Uplifting version from 0.12.0 to 0.12.1 --- DEVELOPMENT.md | 2 +- GNUmakefile | 2 +- README.md | 2 +- docs/index.md | 2 +- examples/data-sources/main.tf | 2 +- examples/main.tf | 2 +- examples/provider/provider.tf | 2 +- examples/resources/main.tf | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 979b9000..42801843 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 442de4f6..a8b8b484 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 58cd531d..ff85a8f8 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 93246336..3fecc9ef 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 2cdde9bf..64ef3cdf 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 530faa67..b967832b 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 859676ef..29644bad 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 5090886b..23638243 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" } }