Skip to content

Commit 22c6ec6

Browse files
authored
Merge pull request #322 from aquasecurity/sarvodaya
rel: Release of 0.8.40
2 parents 04fd35a + ea064a6 commit 22c6ec6

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

DEVELOPMENT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ git clone https://github.com/aquasecurity/terraform-provider-aquasec.git
3232
3333
cd terraform-provider-aquasec
3434
35-
git checkout v0.8.39
35+
git checkout v0.8.40
3636
```
3737

3838
**Build and install the provider**
@@ -103,4 +103,4 @@ each resource can be provided at `examples/resources/[full resource name]/resour
103103
the location is `examples/data-sources/[full data source name]/data-source.tf`.
104104

105105
The output in the docs directory is what gets published on https://registry.terraform.io. Please take care to provide
106-
quality documentation and examples of resources and data sources developed for the provider.
106+
quality documentation and examples of resources and data sources developed for the provider.

GNUmakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ HOSTNAME := github.com
66
NAMESPACE := aquasec
77
NAME := aquasec
88
BINARY := terraform-provider-${NAME}
9-
VERSION := 0.8.39
9+
VERSION := 0.8.40
1010
OS_ARCH := $(shell go env GOOS)_$(shell go env GOARCH)
1111

1212
default: build

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ To quickly get started using the Aquasec provider for Terraform, configure the p
4343
terraform {
4444
required_providers {
4545
aquasec = {
46-
version = "0.8.39"
46+
version = "0.8.40"
4747
source = "aquasecurity/aquasec"
4848
}
4949
}

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Use the navigation to the left to read about the available resources and data so
2121
terraform {
2222
required_providers {
2323
aquasec = {
24-
version = "0.8.39"
24+
version = "0.8.40"
2525
source = "aquasecurity/aquasec"
2626
}
2727
}
@@ -52,4 +52,4 @@ provider "aquasec" {
5252
- `password` (String, Sensitive) This is the password that should be used to make the connection. Can alternatively be sourced from the `AQUA_PASSWORD` environment variable.
5353
- `username` (String, Sensitive) This is the user id that should be used to make the connection. Can alternatively be sourced from the `AQUA_USER` environment variable.
5454
- `validate` (Boolean) Skip provider credential validation when set to false.
55-
- `verify_tls` (Boolean) If true, server tls certificates will be verified by the client before making a connection. Defaults to true. Can alternatively be sourced from the `AQUA_TLS_VERIFY` environment variable.
55+
- `verify_tls` (Boolean) If true, server tls certificates will be verified by the client before making a connection. Defaults to true. Can alternatively be sourced from the `AQUA_TLS_VERIFY` environment variable.

examples/data-sources/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
terraform {
22
required_providers {
33
aquasec = {
4-
// version = "0.8.39"
4+
// version = "0.8.40"
55
source = "aquasecurity/aquasec"
66
}
77
}
@@ -127,4 +127,4 @@ data "aquasec_application_scope" "default" {
127127

128128
output "scopes" {
129129
value = data.aquasec_application_scope.default
130-
}
130+
}

examples/provider/provider.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
terraform {
22
required_providers {
33
aquasec = {
4-
version = "0.8.39"
4+
version = "0.8.40"
55
source = "aquasecurity/aquasec"
66
}
77
}

examples/resources/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
terraform {
22
required_providers {
33
aquasec = {
4-
//version = "0.8.39"
4+
//version = "0.8.40"
55
source = "aquasecurity/aquasec"
66
}
77
}
@@ -357,4 +357,4 @@ resource "aquasec_application_scope" "terraformiap" {
357357
}
358358
}
359359
}
360-
}
360+
}

0 commit comments

Comments
 (0)