Skip to content

Commit

Permalink
Merge pull request #293 from aquasecurity/add-scope-container-runtime…
Browse files Browse the repository at this point in the history
…-update

fix(container_runtime_policy): fix scope container runtime update
  • Loading branch information
semyonmor authored Feb 5, 2025
2 parents 358cc22 + 3c9231b commit e5f9875
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ git clone https://github.com/aquasecurity/terraform-provider-aquasec.git
cd terraform-provider-aquasec
git checkout v0.8.34
git checkout v0.8.35
```

**Build and install the provider**
Expand All @@ -55,7 +55,7 @@ In order to test the provider installed locally, the provider block will have to
terraform {
required_providers {
aquasec = {
version = "0.8.34"
version = "0.8.35"
source = "terraform-provider-aquasec/aquasec/aquasec"
}
}
Expand Down
2 changes: 1 addition & 1 deletion GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ HOSTNAME := github.com
NAMESPACE := aquasec
NAME := aquasec
BINARY := terraform-provider-${NAME}
VERSION := 0.8.34
VERSION := 0.8.35
OS_ARCH := $(shell go env GOOS)_$(shell go env GOARCH)

default: build
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ To quickly get started using the Aquasec provider for Terraform, configure the p
terraform {
required_providers {
aquasec = {
version = "0.8.34"
version = "0.8.35"
source = "aquasecurity/aquasec"
}
}
Expand Down
1 change: 1 addition & 0 deletions aquasec/resource_container_runtime_policy.go
Original file line number Diff line number Diff line change
Expand Up @@ -1757,6 +1757,7 @@ func resourceContainerRuntimePolicyRead(ctx context.Context, d *schema.ResourceD
func resourceContainerRuntimePolicyUpdate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics {
c := m.(*client.Client)
if d.HasChanges("description",
"scope",
"application_scopes",
"scope_expression",
"scope_variables",
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.8.34"
version = "0.8.35"
source = "aquasecurity/aquasec"
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/data-sources/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
aquasec = {
// version = "0.8.34"
// version = "0.8.35"
source = "aquasecurity/aquasec"
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/provider/provider.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
aquasec = {
version = "0.8.34"
version = "0.8.35"
source = "aquasecurity/aquasec"
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/resources/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
aquasec = {
//version = "0.8.34"
//version = "0.8.35"
source = "aquasecurity/aquasec"
}
}
Expand Down

0 comments on commit e5f9875

Please sign in to comment.