-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'integration/main' into 22-new-data-source-security_account
- Loading branch information
Showing
47 changed files
with
1,472 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Blackduck Scan | ||
|
||
on: | ||
push: | ||
branches: | ||
- integration/main | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: self-hosted | ||
steps: | ||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' # See 'Supported distributions' for available options | ||
java-version: '17' | ||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.19.3' | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Build | ||
env: | ||
BLACKDUCK_URL: ${{ secrets.BLACKDUCK_URL }} | ||
BLACKDUCK_API_TOKEN: ${{ secrets.BLACKDUCK_API_TOKEN }} | ||
|
||
run: | | ||
bash scripts/bd_scan.bash $BLACKDUCK_URL $BLACKDUCK_API_TOKEN |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
docs/data-sources/netapp-ontap_protocols_cifs_local_group_data_source.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "netapp-ontap_protocols_cifs_local_group_data_source Data Source - terraform-provider-netapp-ontap" | ||
subcategory: "nas" | ||
description: |- | ||
Retrieve CifsLocalGroup data source | ||
--- | ||
|
||
# Data Source ontap_protocols_cifs_local_group | ||
|
||
Retrieves protocols cifs local group configuration | ||
|
||
## Example Usage | ||
```terraform | ||
data "netapp-ontap_protocols_cifs_local_group_data_source" "local_group" { | ||
# required to know which system to interface with | ||
cx_profile_name = "cluster4" | ||
svm_name = "svm3" | ||
name = "Administrators" | ||
} | ||
``` | ||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `cx_profile_name` (String) Connection profile name | ||
- `name` (String) Cifs Local Group name | ||
- `svm_name` (String) Svm name | ||
|
||
### Read-Only | ||
|
||
- `description` (String) Cifs Local Group description | ||
- `id` (String) Cifs Local Group id | ||
- `members` (Attributes List) Cifs Local Group members (see [below for nested schema](#nestedatt--members)) | ||
|
||
<a id="nestedatt--members"></a> | ||
### Nested Schema for `members` | ||
|
||
Read-Only: | ||
|
||
- `name` (String) Cifs Local Group member | ||
|
||
|
72 changes: 72 additions & 0 deletions
72
docs/data-sources/netapp-ontap_protocols_cifs_local_groups_data_source.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "netapp-ontap_protocols_cifs_local_groups_data_source Data Source - terraform-provider-netapp-ontap" | ||
subcategory: "nas" | ||
description: |- | ||
Retrieves list of Cifs Local Groups. | ||
--- | ||
|
||
# Data Source protocols_cifs_local_groups | ||
|
||
Retrieves list of Cifs Local Groups. | ||
|
||
## Example Usage | ||
```terraform | ||
data "netapp-ontap_protocols_cifs_local_groups_data_source" "local_groups" { | ||
# required to know which system to interface with | ||
cx_profile_name = "cluster1" | ||
filter = { | ||
svm_name = "svm*" | ||
name = "Administrators" | ||
} | ||
} | ||
``` | ||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `cx_profile_name` (String) Connection profile name | ||
|
||
### Optional | ||
|
||
- `filter` (Attributes) (see [below for nested schema](#nestedatt--filter)) | ||
|
||
### Read-Only | ||
|
||
- `protocols_cifs_local_groups` (Attributes List) Protocols Cifs Local Groups (see [below for nested schema](#nestedatt--protocols_cifs_local_groups)) | ||
|
||
<a id="nestedatt--filter"></a> | ||
### Nested Schema for `filter` | ||
|
||
Optional: | ||
|
||
- `name` (String) Cifs Local Group name | ||
- `svm_name` (String) Cifs Local Group svm name | ||
|
||
|
||
<a id="nestedatt--protocols_cifs_local_groups"></a> | ||
### Nested Schema for `protocols_cifs_local_groups` | ||
|
||
Required: | ||
|
||
- `cx_profile_name` (String) Connection profile name | ||
- `name` (String) Cifs Local Group name | ||
- `svm_name` (String) Cifs Local Group svm name | ||
|
||
Read-Only: | ||
|
||
- `description` (String) Cifs Local Group description | ||
- `id` (String) Cifs Local Group identifier | ||
- `members` (Attributes List) Cifs Local Group members (see [below for nested schema](#nestedatt--protocols_cifs_local_groups--members)) | ||
|
||
<a id="nestedatt--protocols_cifs_local_groups--members"></a> | ||
### Nested Schema for `protocols_cifs_local_groups.members` | ||
|
||
Read-Only: | ||
|
||
- `name` (String) Cifs Local Group member names | ||
|
||
|
47 changes: 47 additions & 0 deletions
47
docs/data-sources/netapp-ontap_protocols_cifs_local_user_data_source.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "netapp-ontap_protocols_cifs_local_user_data_source Data Source - terraform-provider-netapp-ontap" | ||
subcategory: "nas" | ||
description: |- | ||
Retrieve CifsLocalUser data source | ||
--- | ||
|
||
# Data Source netapp-ontap_protocols_cifs_local_user | ||
|
||
Retreives protocols cifs local user configuration | ||
|
||
## Example Usage | ||
```terraform | ||
data "netapp-ontap_protocols_cifs_local_user_data_source" "local_user" { | ||
# required to know which system to interface with | ||
cx_profile_name = "cluster4" | ||
svm_name = "svm3" | ||
name = "test" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `cx_profile_name` (String) Connection profile name | ||
- `name` (String) CifsLocalUser name | ||
- `svm_name` (String) IPInterface svm name | ||
|
||
### Read-Only | ||
|
||
- `account_disabled` (Boolean) CifsLocalUser account disabled | ||
- `description` (String) CifsLocalUser description | ||
- `full_name` (String) CifsLocalUser full name | ||
- `id` (String) CifsLocalUser id | ||
- `membership` (Attributes List) CifsLocalUser membership (see [below for nested schema](#nestedatt--membership)) | ||
|
||
<a id="nestedatt--membership"></a> | ||
### Nested Schema for `membership` | ||
|
||
Read-Only: | ||
|
||
- `name` (String) CifsLocalUser membership name | ||
|
||
|
72 changes: 72 additions & 0 deletions
72
docs/data-sources/netapp-ontap_protocols_cifs_local_users_data_source.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "netapp-ontap_protocols_cifs_local_users_data_source Data Source - terraform-provider-netapp-ontap" | ||
subcategory: "nas" | ||
description: |- | ||
Retrieves list of Cifs Local Users. | ||
--- | ||
|
||
# Data Source protocols_cifs_local_users | ||
|
||
Retrieves a list of Cifs Local Users. | ||
|
||
## Example Usage | ||
```terraform | ||
data "netapp-ontap_protocols_cifs_local_users_data_source" "protocols_cifs_local_users" { | ||
# required to know which system to interface with | ||
cx_profile_name = "cluster4" | ||
filter = { | ||
svm_name = "svm*" | ||
} | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `cx_profile_name` (String) Connection profile name | ||
|
||
### Optional | ||
|
||
- `filter` (Attributes) (see [below for nested schema](#nestedatt--filter)) | ||
|
||
### Read-Only | ||
|
||
- `protocols_cifs_local_users` (Attributes List) Protocols CIFS local users (see [below for nested schema](#nestedatt--protocols_cifs_local_users)) | ||
|
||
<a id="nestedatt--filter"></a> | ||
### Nested Schema for `filter` | ||
|
||
Optional: | ||
|
||
- `name` (String) CifsLocalUser name | ||
- `svm_name` (String) CifsLocalUser svm name | ||
|
||
|
||
<a id="nestedatt--protocols_cifs_local_users"></a> | ||
### Nested Schema for `protocols_cifs_local_users` | ||
|
||
Required: | ||
|
||
- `cx_profile_name` (String) Connection profile name | ||
- `name` (String) CifsLocalUser name | ||
|
||
Read-Only: | ||
|
||
- `account_disabled` (Boolean) CifsLocalUser account disabled | ||
- `description` (String) CifsLocalUser description | ||
- `full_name` (String) CifsLocalUser full name | ||
- `id` (String) CifsLocalUser id | ||
- `membership` (Attributes List) CifsLocalUser membership (see [below for nested schema](#nestedatt--protocols_cifs_local_users--membership)) | ||
- `svm_name` (String) CifsLocalUser svm name | ||
|
||
<a id="nestedatt--protocols_cifs_local_users--membership"></a> | ||
### Nested Schema for `protocols_cifs_local_users.membership` | ||
|
||
Read-Only: | ||
|
||
- `name` (String) CifsLocalUser membership name | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.