Skip to content

Commit

Permalink
Automatically generated by magic modules for service: orgpolicy and r…
Browse files Browse the repository at this point in the history
…esource: Organizations__policy.

This commit includes the following changes:
- Singular Resource ERB File
- Plural Resource ERB File
- Terraform configuration
- api.yaml configuration for product orgpolicy and resource Organizations__policy

Signed-off-by: Samir Anand <[email protected]>
  • Loading branch information
samiranand1990 committed Dec 11, 2023
1 parent dfff5d9 commit ca9d980
Show file tree
Hide file tree
Showing 6 changed files with 606 additions and 0 deletions.
568 changes: 568 additions & 0 deletions mmv1/products/orgpolicy/api.yaml

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions mmv1/products/orgpolicy/inspec.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Copyright 2017 Google Inc.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

--- !ruby/object:Provider::Inspec::Config
overrides: !ruby/object:Overrides::ResourceOverrides
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<% gcp_project_id = "#{external_attribute(pwd, 'gcp_project_id', doc_generation)}" -%>
<% organization_policy = grab_attributes(pwd)['organization_policy'] -%>
describe google_orgpolicy_organization_policies(parent: <%= doc_generation ? "' #{organization_policy['parent']}'":"organization_policy['parent']" -%>) do
it { should exist }
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<% gcp_project_id = "#{external_attribute(pwd, 'gcp_project_id', doc_generation)}" -%>
<% organization_policy = grab_attributes(pwd)['organization_policy'] -%>
describe google_orgpolicy_organization_policy(name: <%= doc_generation ? "' #{organization_policy['name']}'":"organization_policy['name']" -%>) do
it { should exist }
its('name') { should cmp <%= doc_generation ? "'#{organization_policy['name']}'" : "organization_policy['name']" -%> }

end

describe google_orgpolicy_organization_policy(name: "does_not_exit") do
it { should_not exist }
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
gcp_project_id = input(:gcp_project_id, value: '<%= external_attribute(pwd, 'gcp_project_id') -%>', description: 'The GCP project identifier.')

organization_policy = input('organization_policy', value: <%= JSON.pretty_generate(grab_attributes(pwd)['organization_policy']) -%>, description: 'organization_policy description')
Original file line number Diff line number Diff line change
Expand Up @@ -942,3 +942,7 @@ project_location_environment:
state : "value_state"
create_time : "value_createtime"
update_time : "value_updatetime"

organization_policy:
name : "value_name"
parent : "value_parent"

0 comments on commit ca9d980

Please sign in to comment.