Skip to content

Commit e5f9875

Browse files
authored
Merge pull request #293 from aquasecurity/add-scope-container-runtime-update
fix(container_runtime_policy): fix scope container runtime update
2 parents 358cc22 + 3c9231b commit e5f9875

File tree

8 files changed

+9
-8
lines changed

8 files changed

+9
-8
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.34
35+
git checkout v0.8.35
3636
```
3737

3838
**Build and install the provider**
@@ -55,7 +55,7 @@ In order to test the provider installed locally, the provider block will have to
5555
terraform {
5656
required_providers {
5757
aquasec = {
58-
version = "0.8.34"
58+
version = "0.8.35"
5959
source = "terraform-provider-aquasec/aquasec/aquasec"
6060
}
6161
}

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.34
9+
VERSION := 0.8.35
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.34"
46+
version = "0.8.35"
4747
source = "aquasecurity/aquasec"
4848
}
4949
}

aquasec/resource_container_runtime_policy.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1757,6 +1757,7 @@ func resourceContainerRuntimePolicyRead(ctx context.Context, d *schema.ResourceD
17571757
func resourceContainerRuntimePolicyUpdate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics {
17581758
c := m.(*client.Client)
17591759
if d.HasChanges("description",
1760+
"scope",
17601761
"application_scopes",
17611762
"scope_expression",
17621763
"scope_variables",

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.34"
24+
version = "0.8.35"
2525
source = "aquasecurity/aquasec"
2626
}
2727
}

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

examples/resources/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.34"
4+
//version = "0.8.35"
55
source = "aquasecurity/aquasec"
66
}
77
}

0 commit comments

Comments
 (0)