-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into CHEF-12244-MAGIC-MODULE-dataproc_v1-Projects…
…__locations__workflowTemplate
- Loading branch information
Showing
14 changed files
with
586 additions
and
6 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.11.114 | ||
1.11.116 |
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,50 @@ | ||
--- | ||
title: About the google_orgpolicy_folder_constraints resource | ||
platform: gcp | ||
--- | ||
|
||
## Syntax | ||
A `google_orgpolicy_folder_constraints` is used to test a Google FolderConstraint resource | ||
|
||
## Examples | ||
``` | ||
describe google_orgpolicy_folder_constraints(parent: ' value_parent') do | ||
it { should exist } | ||
its('names') { should include 'value_name'} | ||
its('display_names') { should include 'value_displayName'} | ||
its('descriptions') { should include 'value_description'} | ||
its('constraint_defaults') { should include 'value_constraint_default'} | ||
its('list_constraints') { should include 'value_list_constraint'} | ||
end | ||
``` | ||
|
||
## Properties | ||
Properties that can be accessed from the `google_orgpolicy_folder_constraints` resource: | ||
|
||
* `display_names`: The human readable name. Mutable. | ||
|
||
* `descriptions`: Detailed description of what this constraint controls as well as how and where it is enforced. Mutable. | ||
|
||
* `constraint_defaults`: The evaluation behavior of this constraint in the absence of a policy. | ||
Possible values: | ||
* CONSTRAINT_DEFAULT_UNSPECIFIED | ||
* ALLOW | ||
* DENY | ||
|
||
* `supports_dry_runs`: Shows if dry run is supported for this constraint or not. | ||
|
||
* `names`: Immutable. The resource name of the constraint. Must be in one of the following forms: * `projects/{project_number}/constraints/{constraint_name}` * `folders/{folder_id}/constraints/{constraint_name}` * `organizations/{organization_id}/constraints/{constraint_name}` For example, "/projects/123/constraints/compute.disableSerialPortAccess". | ||
|
||
* `list_constraints`: A constraint that allows or disallows a list of string values, which are configured by an Organization Policy administrator with a policy. | ||
|
||
* `supports_under`: Indicates whether subtrees of the Resource Manager resource hierarchy can be used in `Policy.allowed_values` and `Policy.denied_values`. For example, `"under:folders/123"` would match any resource under the 'folders/123' folder. | ||
|
||
* `supports_in`: Indicates whether values grouped into categories can be used in `Policy.allowed_values` and `Policy.denied_values`. For example, `"in:Python"` would match any value in the 'Python' group. | ||
|
||
## Filter Criteria | ||
This resource supports all of the above properties as filter criteria, which can be used | ||
with `where` as a block or a method. | ||
|
||
## GCP Permissions | ||
|
||
Ensure the [https://orgpolicy.googleapis.com/](https://console.cloud.google.com/apis/library/orgpolicy.googleapis.com/) is enabled for the current project. |
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,31 @@ | ||
--- | ||
title: About the google_orgpolicy_folder_policies resource | ||
platform: gcp | ||
--- | ||
|
||
## Syntax | ||
A `google_orgpolicy_folder_policies` is used to test a Google FolderPolicy resource | ||
|
||
## Examples | ||
``` | ||
describe google_orgpolicy_folder_policies(parent: ' value_parent') do | ||
it { should exist } | ||
end | ||
``` | ||
|
||
## Properties | ||
Properties that can be accessed from the `google_orgpolicy_folder_policies` resource: | ||
|
||
See [google_orgpolicy_folder_policy.md](google_orgpolicy_folder_policy.md) for more detailed information | ||
* `dry_run_specs`: an array of `google_orgpolicy_folder_policy` dry_run_spec | ||
* `specs`: an array of `google_orgpolicy_folder_policy` spec | ||
* `names`: an array of `google_orgpolicy_folder_policy` name | ||
* `alternates`: an array of `google_orgpolicy_folder_policy` alternate | ||
|
||
## Filter Criteria | ||
This resource supports all of the above properties as filter criteria, which can be used | ||
with `where` as a block or a method. | ||
|
||
## GCP Permissions | ||
|
||
Ensure the [https://orgpolicy.googleapis.com/](https://console.cloud.google.com/apis/library/orgpolicy.googleapis.com/) is enabled for the current project. |
Oops, something went wrong.