Skip to content

Commit 44be1b3

Browse files
authored
Merge pull request #335 from aquasecurity/v0.9.0
rel: Release of version v0.9.0
2 parents 709f30e + 6808a3d commit 44be1b3

File tree

11 files changed

+17
-11
lines changed

11 files changed

+17
-11
lines changed

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
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.41
35+
git checkout v0.9.0
3636
```
3737

3838
**Build and install 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.41
9+
VERSION := 0.9.0
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.41"
46+
version = "0.9.0"
4747
source = "aquasecurity/aquasec"
4848
}
4949
}

docs/data-sources/container_runtime_policy.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,7 @@ Read-Only:
278278
- `enabled` (Boolean)
279279
- `exclude_directories` (List of String)
280280
- `exclude_processes` (List of String)
281+
- `file_forensic_collection` (Boolean)
281282
- `include_directories` (List of String)
282283

283284

docs/data-sources/enforcer_groups.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ output "group_details" {
9494
- `risk_explorer_auto_discovery` (Boolean) When set to `True` allows Enforcers to be discovered in the Risk Explorer.
9595
- `runtime_policy_name` (String) Function Runtime Policy that will applay on the nano enforcer.
9696
- `runtime_type` (String) The container runtime environment.
97-
- `schedule_scan_time` (Set of Object) Scheduling scan time for which you are creating the Enforcer group. (see [below for nested schema](#nestedatt--schedule_scan_time))
97+
- `schedule_scan_settings` (List of Object) Scheduling scan time for which you are creating the Enforcer group. (see [below for nested schema](#nestedatt--schedule_scan_settings))
9898
- `sync_host_images` (Boolean) When set to `True` configures Enforcers to discover local host images. Discovered images will be listed under Images > Host Images, as well as under Infrastructure (in the Images tab for applicable hosts).
9999
- `syscall_enabled` (Boolean) When set to `True` allows profiling and monitoring system calls made by running containers.
100100
- `token` (String) The batch install token.
@@ -123,13 +123,13 @@ Read-Only:
123123
- `type` (String)
124124

125125

126-
<a id="nestedatt--schedule_scan_time"></a>
127-
### Nested Schema for `schedule_scan_time`
126+
<a id="nestedatt--schedule_scan_settings"></a>
127+
### Nested Schema for `schedule_scan_settings`
128128

129129
Read-Only:
130130

131131
- `days` (List of Number)
132-
- `disbled` (Boolean)
132+
- `disabled` (Boolean)
133133
- `is_custom` (Boolean)
134134
- `time` (List of Number)
135135

docs/data-sources/host_runtime_policy.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,10 @@ Optional:
112112
- `exclude_processes` (List of String) List of registry processes to be excluded from being protected.
113113
- `include_directories` (List of String) List of registry paths to be excluded from being protected.
114114

115+
Read-Only:
116+
117+
- `file_forensic_collection` (Boolean) Whether to enable file forensic collection.
118+
115119

116120
<a id="nestedblock--package_block"></a>
117121
### Nested Schema for `package_block`

docs/index.md

Lines changed: 1 addition & 1 deletion
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.41"
24+
version = "0.9.0"
2525
source = "aquasecurity/aquasec"
2626
}
2727
}

docs/resources/host_runtime_policy.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,7 @@ Optional:
359359
- `enabled` (Boolean) Defines if enabled or not
360360
- `exclude_directories` (List of String) List of registry paths to be excluded from being protected.
361361
- `exclude_processes` (List of String) List of registry processes to be excluded from being protected.
362+
- `file_forensic_collection` (Boolean) Whether to enable file forensic collection.
362363
- `include_directories` (List of String) List of registry paths to be excluded from being protected.
363364

364365

examples/data-sources/main.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.41"
4+
// version = "0.9.0"
55
source = "aquasecurity/aquasec"
66
}
77
}

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.41"
4+
version = "0.9.0"
55
source = "aquasecurity/aquasec"
66
}
77
}

0 commit comments

Comments
 (0)