Skip to content

Commit

Permalink
Merge pull request #280 from KoppulaRajender/release-aquasec
Browse files Browse the repository at this point in the history
Create Release Version 0.8.32
  • Loading branch information
semyonm0r authored Jan 3, 2025
2 parents 22a0e29 + 8a0538d commit cb400a0
Show file tree
Hide file tree
Showing 33 changed files with 500 additions and 394 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.20
git checkout v0.8.32
```

**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.31"
version = "0.8.32"
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.31
VERSION := 0.8.32
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.31"
version = "0.8.32"
source = "aquasecurity/aquasec"
}
}
Expand Down
9 changes: 9 additions & 0 deletions docs/data-sources/application_scope.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ Optional:
Optional:

- `attribute` (String)
- `name` (String)
- `value` (String)


Expand All @@ -91,6 +92,7 @@ Optional:
Optional:

- `attribute` (String)
- `name` (String)
- `value` (String)


Expand All @@ -109,6 +111,7 @@ Optional:
Optional:

- `attribute` (String)
- `name` (String)
- `value` (String)


Expand All @@ -128,6 +131,7 @@ Optional:
Optional:

- `attribute` (String)
- `name` (String)
- `value` (String)


Expand All @@ -154,6 +158,7 @@ Optional:
Optional:

- `attribute` (String)
- `name` (String)
- `value` (String)


Expand All @@ -172,6 +177,7 @@ Optional:
Optional:

- `attribute` (String)
- `name` (String)
- `value` (String)


Expand Down Expand Up @@ -200,6 +206,7 @@ Optional:
Optional:

- `attribute` (String)
- `name` (String)
- `value` (String)


Expand All @@ -218,6 +225,7 @@ Optional:
Optional:

- `attribute` (String)
- `name` (String)
- `value` (String)


Expand All @@ -236,6 +244,7 @@ Optional:
Optional:

- `attribute` (String)
- `name` (String)
- `value` (String)


2 changes: 2 additions & 0 deletions docs/data-sources/service.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,5 @@ Read-Only:
- `attribute` (String)
- `name` (String)
- `value` (String)


10 changes: 5 additions & 5 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,19 @@ Use the navigation to the left to read about the available resources and data so
terraform {
required_providers {
aquasec = {
version = "0.8.31"
version = "0.8.32"
source = "aquasecurity/aquasec"
}
}
}
provider "aquasec" {
username = "IaC" // Alternatively sourced from $AQUA_USER
aqua_url = "https://aquaurl.com" // Alternatively sourced from $AQUA_URL
password = "@password" // Alternatively sourced from $AQUA_PASSWORD
username = "IaC" // Alternatively sourced from $AQUA_USER
aqua_url = "https://aquaurl.com" // Alternatively sourced from $AQUA_URL
password = "@password" // Alternatively sourced from $AQUA_PASSWORD
// If you are using unverifiable certificates (e.g. self-signed) you may need to disable certificate verification
verify_tls = false // Alternatively sourced from $AQUA_TLS_VERIFY
verify_tls = false // Alternatively sourced from $AQUA_TLS_VERIFY
// Alternatively, you can provide these configurations from a config file, and configure the provider as below
// config_path = '/path/to/tf.config' // defaults to '~/.aqua/tf.config' -- Alternatively sourced from $AQUA_CONFIG
Expand Down
52 changes: 26 additions & 26 deletions docs/resources/acknowledge.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,32 +14,32 @@ description: |-

```terraform
resource "aquasec_acknowledge" "acknowledge" {
comment = "comment"
issues {
docker_id = ""
image_name = "image:latest"
issue_name = "CVE-2022-1271"
issue_type = "vulnerability"
registry_name = "registry"
resource_cpe = "cpe:/a:gnu:gzip:1.10"
resource_name = "gzip"
resource_path = "/usr/bin/gzip"
resource_type = "executable"
resource_version = "1.10"
}
issues {
docker_id = "docker-id"
image_name = "image-name"
issue_name = "ALAS2-2021-1722"
issue_type = "vulnerability"
registry_name = "registry-name"
resource_cpe = "pkg:/amzn:2:nss-softokn:3.44.0-8.amzn2"
resource_name = "nss-softokn"
resource_path = ""
resource_type = "package"
resource_version = "3.44.0-8.amzn2"
}
comment = "comment"
issues {
docker_id = ""
image_name = "image:latest"
issue_name = "CVE-2022-1271"
issue_type = "vulnerability"
registry_name = "registry"
resource_cpe = "cpe:/a:gnu:gzip:1.10"
resource_name = "gzip"
resource_path = "/usr/bin/gzip"
resource_type = "executable"
resource_version = "1.10"
}
issues {
docker_id = "docker-id"
image_name = "image-name"
issue_name = "ALAS2-2021-1722"
issue_type = "vulnerability"
registry_name = "registry-name"
resource_cpe = "pkg:/amzn:2:nss-softokn:3.44.0-8.amzn2"
resource_name = "nss-softokn"
resource_path = ""
resource_type = "package"
resource_version = "3.44.0-8.amzn2"
}
}
```

Expand Down
93 changes: 51 additions & 42 deletions docs/resources/application_scope.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,52 +14,52 @@ description: |-

```terraform
resource "aquasec_application_scope" "terraformiap" {
description = "test123"
name = "test18"
// Categories is a nested block of artifacts, workloads and infrastructure
categories {
// Artifacts is a nested block of Image, Function, CF
artifacts {
// Every object requires expression(logical combinations of variables v1, v2, v3...) and list of variables consists of attribute(pre-defined) and value
image {
expression = "v1 && v2"
variables {
attribute = "aqua.registry"
value = "test-registry"
}
variables {
attribute = "image.repo"
value = "nginx"
}
}
description = "test123"
name = "test18"
// Categories is a nested block of artifacts, workloads and infrastructure
categories {
// Artifacts is a nested block of Image, Function, CF
artifacts {
// Every object requires expression(logical combinations of variables v1, v2, v3...) and list of variables consists of attribute(pre-defined) and value
image {
expression = "v1 && v2"
variables {
attribute = "aqua.registry"
value = "test-registry"
}
// Workloads is a nested block of Kubernetes, OS, CF
workloads {
// Every object requires expression(logical combinations of variables v1, v2, v3...) and list of variables consists of attribute(pre-defined) and value
kubernetes {
expression = "v1 && v2"
variables {
attribute = "kubernetes.cluster"
value = "aqua"
}
variables {
attribute = "kubernetes.namespace"
value = "aqua"
}
}
variables {
attribute = "image.repo"
value = "nginx"
}
// Infrastructure is a nested block of Kubernetes, OS
infrastructure {
// Every object requires expression and list of variables consists of attribute(pre-defined) and value
kubernetes {
expression = "v1"
variables {
attribute = "kubernetes.cluster"
value = "aqua"
}
}
}
}
// Workloads is a nested block of Kubernetes, OS, CF
workloads {
// Every object requires expression(logical combinations of variables v1, v2, v3...) and list of variables consists of attribute(pre-defined) and value
kubernetes {
expression = "v1 && v2"
variables {
attribute = "kubernetes.cluster"
value = "aqua"
}
variables {
attribute = "kubernetes.namespace"
value = "aqua"
}
}
}
// Infrastructure is a nested block of Kubernetes, OS
infrastructure {
// Every object requires expression and list of variables consists of attribute(pre-defined) and value
kubernetes {
expression = "v1"
variables {
attribute = "kubernetes.cluster"
value = "aqua"
}
}
}
}
}
```

Expand Down Expand Up @@ -117,6 +117,7 @@ Optional:
Optional:

- `attribute` (String)
- `name` (String)
- `value` (String)


Expand All @@ -135,6 +136,7 @@ Optional:
Optional:

- `attribute` (String)
- `name` (String)
- `value` (String)


Expand All @@ -153,6 +155,7 @@ Optional:
Optional:

- `attribute` (String)
- `name` (String)
- `value` (String)


Expand Down Expand Up @@ -180,6 +183,7 @@ Optional:
Optional:

- `attribute` (String)
- `name` (String)
- `value` (String)


Expand All @@ -198,6 +202,7 @@ Optional:
Optional:

- `attribute` (String)
- `name` (String)
- `value` (String)


Expand Down Expand Up @@ -226,6 +231,7 @@ Optional:
Optional:

- `attribute` (String)
- `name` (String)
- `value` (String)


Expand All @@ -244,6 +250,7 @@ Optional:
Optional:

- `attribute` (String)
- `name` (String)
- `value` (String)


Expand All @@ -262,6 +269,7 @@ Optional:
Optional:

- `attribute` (String)
- `name` (String)
- `value` (String)


Expand All @@ -281,6 +289,7 @@ Read-Only:
Read-Only:

- `attribute` (String)
- `name` (String)
- `value` (String)


9 changes: 8 additions & 1 deletion docs/resources/aqua_label.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,14 @@ description: |-




## Example Usage

```terraform
resource "aquasec_aqua_label" "aqua_label" {
name = "example_label"
description = "example_description"
}
```

<!-- schema generated by tfplugindocs -->
## Schema
Expand Down
Loading

0 comments on commit cb400a0

Please sign in to comment.