├── .ci ├── README.md ├── RELEASE_NOTES_GUIDE.md ├── changelog.tmpl ├── containers │ ├── README.md │ ├── ansible │ │ └── Dockerfile │ ├── contributor-checker │ │ ├── Dockerfile │ │ └── check-contributor.sh │ ├── downstream-builder │ │ ├── Dockerfile │ │ └── generate_downstream.sh │ ├── downstream-waiter │ │ ├── Dockerfile │ │ └── wait_for_commit.sh │ ├── gcb-terraform-vcr-tester │ │ ├── Dockerfile │ │ └── test_terraform_vcr.sh │ ├── github-differ │ │ ├── Dockerfile │ │ └── generate_comment.sh │ ├── terraform-tester │ │ ├── Dockerfile │ │ └── test_terraform.sh │ ├── terraform-triage-party │ │ ├── config.yaml │ │ └── deploy.sh │ ├── terraform-validator-tester-integration │ │ ├── Dockerfile │ │ └── test_terraform_validator_integration.sh │ ├── terraform-validator-tester │ │ ├── Dockerfile │ │ └── test_terraform_validator.sh │ ├── terraform-vcr-community │ │ ├── Dockerfile │ │ └── reverse_check_membership.sh │ ├── terraform-vcr-tester │ │ ├── Dockerfile │ │ ├── check_membership.sh │ │ ├── run_vcr_tests.sh │ │ ├── teamcitycancelparams.xml │ │ ├── teamcityparams.xml │ │ └── teamcityparamsrecording.xml │ └── vcr-cassette-merger │ │ ├── Dockerfile │ │ └── vcr_merge.sh ├── gcb-changelog-checker.yml ├── gcb-community.yml ├── gcb-downstream-builder.yml ├── gcb-generate-diffs.yml ├── gcb-push-downstream.yml ├── gcb-run-rake-tests.yml └── release-note.tmpl ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── SECURITY.md └── pre-commit ├── .gitignore ├── CODEOWNERS ├── GNUmakefile ├── LICENSE ├── README.md ├── mmv1 ├── .rubocop.yml ├── .ruby-version ├── .yamllint ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── TUTORIAL.md ├── api │ ├── async.rb │ ├── compiler.rb │ ├── object.rb │ ├── product.rb │ ├── product │ │ ├── api_reference.rb │ │ └── version.rb │ ├── resource.rb │ ├── resource │ │ ├── iam_policy.rb │ │ ├── nested_query.rb │ │ └── reference_links.rb │ ├── timeout.rb │ └── type.rb ├── compile │ └── core.rb ├── compiler ├── compiler.rb ├── google │ ├── extensions.rb │ ├── golang_utils.rb │ ├── logger.rb │ ├── python_utils.rb │ ├── string_utils.rb │ └── yaml_validator.rb ├── images │ ├── magic-modules.png │ ├── magic-modules.sketch │ └── magic-modules.svg ├── overrides │ ├── ansible │ │ ├── property_override.rb │ │ └── resource_override.rb │ ├── inspec │ │ ├── property_override.rb │ │ └── resource_override.rb │ ├── resources.rb │ ├── runner.rb │ ├── terraform │ │ ├── property_override.rb │ │ └── resource_override.rb │ └── validator.rb ├── products │ ├── accessapproval │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── accesscontextmanager │ │ ├── api.yaml │ │ ├── inspec.yaml │ │ └── terraform.yaml │ ├── activedirectory │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── apigateway │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── apigee │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── appengine │ │ ├── ansible.yaml │ │ ├── ansible_version_added.yaml │ │ ├── api.yaml │ │ ├── examples │ │ │ └── ansible │ │ │ │ └── firewall_rule.yaml │ │ ├── inspec.yaml │ │ └── terraform.yaml │ ├── artifactregistry │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── bigquery │ │ ├── ansible.yaml │ │ ├── ansible_version_added.yaml │ │ ├── api.yaml │ │ ├── examples │ │ │ └── ansible │ │ │ │ ├── dataset.yaml │ │ │ │ └── table.yaml │ │ ├── inspec.yaml │ │ └── terraform.yaml │ ├── bigqueryconnection │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── bigquerydatatransfer │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── bigqueryreservation │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── bigtable │ │ ├── ansible.yaml │ │ ├── ansible_version_added.yaml │ │ ├── api.yaml │ │ ├── examples │ │ │ └── ansible │ │ │ │ └── instance.yaml │ │ ├── helpers │ │ │ └── ansible │ │ │ │ └── instance.py │ │ └── terraform.yaml │ ├── billingbudget │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── binaryauthorization │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── certificatemanager │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── cgc │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── cloudasset │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── cloudbilling │ │ ├── api.yaml │ │ └── inspec.yaml │ ├── cloudbuild │ │ ├── ansible.yaml │ │ ├── ansible_version_added.yaml │ │ ├── api.yaml │ │ ├── examples │ │ │ └── ansible │ │ │ │ └── trigger.yaml │ │ ├── inspec.yaml │ │ └── terraform.yaml │ ├── cloudfunctions │ │ ├── ansible.yaml │ │ ├── ansible_version_added.yaml │ │ ├── api.yaml │ │ ├── examples │ │ │ └── ansible │ │ │ │ └── cloud_function.yaml │ │ ├── helpers │ │ │ └── ansible │ │ │ │ └── function_transport.py │ │ ├── inspec.yaml │ │ └── terraform.yaml │ ├── cloudfunctions2 │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── cloudidentity │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── cloudiot │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── cloudrun │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── cloudscheduler │ │ ├── ansible.yaml │ │ ├── ansible_version_added.yaml │ │ ├── api.yaml │ │ ├── examples │ │ │ └── ansible │ │ │ │ └── job.yaml │ │ ├── helpers │ │ │ └── python │ │ │ │ └── job.py │ │ ├── inspec.yaml │ │ └── terraform.yaml │ ├── cloudtasks │ │ ├── ansible.yaml │ │ ├── ansible_version_added.yaml │ │ ├── api.yaml │ │ ├── examples │ │ │ └── ansible │ │ │ │ └── queue.yaml │ │ ├── helpers │ │ │ └── ansible │ │ │ │ └── queue_status.py │ │ └── terraform.yaml │ ├── compute │ │ ├── ansible.yaml │ │ ├── ansible_version_added.yaml │ │ ├── api.yaml │ │ ├── examples │ │ │ └── ansible │ │ │ │ ├── address.yaml │ │ │ │ ├── autoscaler.yaml │ │ │ │ ├── backend_bucket.yaml │ │ │ │ ├── backend_service.yaml │ │ │ │ ├── disk.yaml │ │ │ │ ├── external_vpn_gateway.yaml │ │ │ │ ├── firewall.yaml │ │ │ │ ├── forwarding_rule.yaml │ │ │ │ ├── global_address.yaml │ │ │ │ ├── global_forwarding_rule.yaml │ │ │ │ ├── health_check.yaml │ │ │ │ ├── http_health_check.yaml │ │ │ │ ├── https_health_check.yaml │ │ │ │ ├── image.yaml │ │ │ │ ├── instance.yaml │ │ │ │ ├── instance_group.yaml │ │ │ │ ├── instance_group_manager.yaml │ │ │ │ ├── instance_template.yaml │ │ │ │ ├── interconnect_attachment.yaml │ │ │ │ ├── network.yaml │ │ │ │ ├── network_endpoint_group.yaml │ │ │ │ ├── node_group.yaml │ │ │ │ ├── node_template.yaml │ │ │ │ ├── region_autoscaler.yaml │ │ │ │ ├── region_backend_service.yaml │ │ │ │ ├── region_disk.yaml │ │ │ │ ├── region_health_check.yaml │ │ │ │ ├── region_instance_group_manager.yaml │ │ │ │ ├── region_target_http_proxy.yaml │ │ │ │ ├── region_target_https_proxy.yaml │ │ │ │ ├── region_url_map.yaml │ │ │ │ ├── reservation.yaml │ │ │ │ ├── resource_policy.yaml │ │ │ │ ├── route.yaml │ │ │ │ ├── router.yaml │ │ │ │ ├── snapshot.yaml │ │ │ │ ├── ssl_certificate.yaml │ │ │ │ ├── ssl_policy.yaml │ │ │ │ ├── subnetwork.yaml │ │ │ │ ├── target_http_proxy.yaml │ │ │ │ ├── target_https_proxy.yaml │ │ │ │ ├── target_instance.yaml │ │ │ │ ├── target_pool.yaml │ │ │ │ ├── target_ssl_proxy.yaml │ │ │ │ ├── target_tcp_proxy.yaml │ │ │ │ ├── target_vpn_gateway.yaml │ │ │ │ ├── url_map.yaml │ │ │ │ └── vpn_tunnel.yaml │ │ ├── helpers │ │ │ └── python │ │ │ │ ├── instance_metadata.py │ │ │ │ ├── instance_start.py │ │ │ │ ├── instance_update_methods.py │ │ │ │ ├── instancegroup_instances.py │ │ │ │ ├── provider_firewall.py │ │ │ │ ├── provider_instance.py │ │ │ │ ├── provider_instance_template.py │ │ │ │ └── provider_target_pool.py │ │ ├── inspec.yaml │ │ ├── terraform.yaml │ │ └── tests │ │ │ └── ansible │ │ │ └── firewall_update.yaml │ ├── container │ │ ├── ansible.yaml │ │ ├── ansible_version_added.yaml │ │ ├── api.yaml │ │ ├── examples │ │ │ └── ansible │ │ │ │ ├── cluster.yaml │ │ │ │ └── node_pool.yaml │ │ ├── helpers │ │ │ └── python │ │ │ │ ├── kubectl.py │ │ │ │ ├── provider_cluster.py │ │ │ │ └── provider_node_pool.py │ │ └── inspec.yaml │ ├── containeranalysis │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── datacatalog │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── datafusion │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── dataproc │ │ ├── api.yaml │ │ ├── inspec.yaml │ │ └── terraform.yaml │ ├── datastore │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── deploymentmanager │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── dialogflow │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── dialogflowcx │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── dlp │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── dns │ │ ├── ansible.yaml │ │ ├── ansible_version_added.yaml │ │ ├── api.yaml │ │ ├── examples │ │ │ └── ansible │ │ │ │ ├── managed_zone.yaml │ │ │ │ └── resource_record_set.yaml │ │ ├── helpers │ │ │ └── ansible │ │ │ │ └── provider_resource_set.py.erb │ │ ├── inspec.yaml │ │ └── terraform.yaml │ ├── documentai │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── essentialcontacts │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── filestore │ │ ├── ansible.yaml │ │ ├── ansible_version_added.yaml │ │ ├── api.yaml │ │ ├── examples │ │ │ └── ansible │ │ │ │ └── instance.yaml │ │ ├── inspec.yaml │ │ └── terraform.yaml │ ├── firebase │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── firestore │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── gameservices │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── gkehub │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── healthcare │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── iam │ │ ├── ansible.yaml │ │ ├── ansible_version_added.yaml │ │ ├── api.yaml │ │ ├── examples │ │ │ └── ansible │ │ │ │ ├── role.yaml │ │ │ │ ├── service_account.yaml │ │ │ │ └── service_account_key.yaml │ │ ├── helpers │ │ │ ├── ansible │ │ │ │ └── service_account_key_template.erb │ │ │ └── python │ │ │ │ ├── provider_role.py │ │ │ │ └── provider_service_account.py │ │ └── inspec.yaml │ ├── iam2 │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── iambeta │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── iap │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── identityplatform │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── kms │ │ ├── ansible.yaml │ │ ├── ansible_version_added.yaml │ │ ├── api.yaml │ │ ├── examples │ │ │ └── ansible │ │ │ │ ├── crypto_key.yaml │ │ │ │ └── key_ring.yaml │ │ ├── helpers │ │ │ └── python │ │ │ │ ├── crypto_key_test.yaml │ │ │ │ ├── key_ring_test.yaml │ │ │ │ └── provider_key_ring.py │ │ ├── inspec.yaml │ │ └── terraform.yaml │ ├── logging │ │ ├── ansible.yaml │ │ ├── ansible_version_added.yaml │ │ ├── api.yaml │ │ ├── examples │ │ │ └── ansible │ │ │ │ └── metric.yaml │ │ ├── inspec.yaml │ │ └── terraform.yaml │ ├── memcache │ │ ├── api.yaml │ │ ├── inspec.yaml │ │ └── terraform.yaml │ ├── metastore │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── mlengine │ │ ├── ansible.yaml │ │ ├── ansible_version_added.yaml │ │ ├── api.yaml │ │ ├── examples │ │ │ └── ansible │ │ │ │ ├── model.yaml │ │ │ │ └── version.yaml │ │ ├── helpers │ │ │ └── ansible │ │ │ │ ├── model_decoder.py │ │ │ │ └── version_set_default.py │ │ ├── inspec.yaml │ │ └── terraform.yaml │ ├── monitoring │ │ ├── api.yaml │ │ ├── inspec.yaml │ │ └── terraform.yaml │ ├── networkmanagement │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── networkservices │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── notebooks │ │ ├── README.md │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── osconfig │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── oslogin │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── privateca │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── pubsub │ │ ├── ansible.yaml │ │ ├── ansible_version_added.yaml │ │ ├── api.yaml │ │ ├── example.yaml │ │ ├── examples │ │ │ └── ansible │ │ │ │ ├── subscription.yaml │ │ │ │ └── topic.yaml │ │ ├── inspec.yaml │ │ ├── terraform.yaml │ │ └── test.yaml │ ├── pubsublite │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── redis │ │ ├── ansible.yaml │ │ ├── ansible_version_added.yaml │ │ ├── api.yaml │ │ ├── examples │ │ │ └── ansible │ │ │ │ └── instance.yaml │ │ ├── inspec.yaml │ │ └── terraform.yaml │ ├── resourcemanager │ │ ├── ansible.yaml │ │ ├── ansible_version_added.yaml │ │ ├── api.yaml │ │ ├── examples │ │ │ └── ansible │ │ │ │ └── project.yaml │ │ ├── helpers │ │ │ └── ansible │ │ │ │ └── return_if_object.py │ │ ├── inspec.yaml │ │ └── terraform.yaml │ ├── runtimeconfig │ │ ├── ansible.yaml │ │ ├── ansible_version_added.yaml │ │ ├── api.yaml │ │ ├── examples │ │ │ └── ansible │ │ │ │ ├── config.yaml │ │ │ │ └── variable.yaml │ │ ├── helpers │ │ │ └── ansible │ │ │ │ └── variable_delete_config.py │ │ ├── inspec.yaml │ │ └── terraform.yaml │ ├── secretmanager │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── securitycenter │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── securityscanner │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── servicedirectory │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── servicemanagement │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── serviceusage │ │ ├── ansible.yaml │ │ ├── ansible_version_added.yaml │ │ ├── api.yaml │ │ ├── examples │ │ │ └── ansible │ │ │ │ └── service.yaml │ │ ├── inspec.yaml │ │ └── terraform.yaml │ ├── sourcerepo │ │ ├── ansible.yaml │ │ ├── ansible_version_added.yaml │ │ ├── api.yaml │ │ ├── examples │ │ │ └── ansible │ │ │ │ └── repository.yaml │ │ ├── inspec.yaml │ │ └── terraform.yaml │ ├── spanner │ │ ├── ansible.yaml │ │ ├── ansible_version_added.yaml │ │ ├── api.yaml │ │ ├── async.yaml │ │ ├── examples │ │ │ └── ansible │ │ │ │ ├── database.yaml │ │ │ │ └── instance.yaml │ │ ├── helpers │ │ │ └── python │ │ │ │ ├── database_helpers.py.erb │ │ │ │ ├── instance_config_helpers.py.erb │ │ │ │ └── instance_helpers.py.erb │ │ ├── inspec.yaml │ │ ├── terraform.yaml │ │ └── test.yaml │ ├── sql │ │ ├── ansible.yaml │ │ ├── ansible_version_added.yaml │ │ ├── api.yaml │ │ ├── examples │ │ │ └── ansible │ │ │ │ ├── database.yaml │ │ │ │ ├── instance.yaml │ │ │ │ ├── ssl_cert.yaml │ │ │ │ └── user.yaml │ │ ├── helpers │ │ │ └── ansible │ │ │ │ └── return_if_object.py │ │ ├── inspec.yaml │ │ └── terraform.yaml │ ├── storage │ │ ├── ansible.yaml │ │ ├── ansible_version_added.yaml │ │ ├── api.yaml │ │ ├── examples │ │ │ └── ansible │ │ │ │ ├── bucket.yaml │ │ │ │ ├── bucket_access_control.yaml │ │ │ │ ├── default_object_acl.yaml │ │ │ │ └── object.yaml │ │ ├── inspec.yaml │ │ └── terraform.yaml │ ├── tags │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── tpu │ │ ├── ansible.yaml │ │ ├── ansible_version_added.yaml │ │ ├── api.yaml │ │ ├── examples │ │ │ └── ansible │ │ │ │ └── node.yaml │ │ └── terraform.yaml │ ├── vertexai │ │ ├── api.yaml │ │ └── terraform.yaml │ ├── vpcaccess │ │ ├── api.yaml │ │ └── terraform.yaml │ └── workflows │ │ ├── api.yaml │ │ └── terraform.yaml ├── provider │ ├── abstract_core.rb │ ├── ansible.rb │ ├── ansible │ │ ├── blank_file.yaml │ │ ├── common~compile.yaml │ │ ├── common~copy.yaml │ │ ├── common~copy~devel.yaml │ │ ├── config.rb │ │ ├── custom_code.rb │ │ ├── documentation.rb │ │ ├── example.rb │ │ ├── facts_override.rb │ │ ├── gcp_integration_runner.py │ │ ├── gcp_utils.py │ │ ├── module.rb │ │ ├── request.rb │ │ ├── resourceref.rb │ │ ├── resource~compile.yaml │ │ ├── resource~compile~devel.yaml │ │ ├── test_gcp_session.py │ │ ├── test_gcp_utils.py │ │ ├── test_template.yaml │ │ ├── tests.rb │ │ └── version_added.rb │ ├── ansible_devel.rb │ ├── config.rb │ ├── core.rb │ ├── file_template.rb │ ├── inspec.rb │ ├── inspec │ │ ├── Gemfile │ │ └── common~copy.yaml │ ├── terraform.rb │ ├── terraform │ │ ├── async.rb │ │ ├── common~compile.yaml │ │ ├── common~copy.yaml │ │ ├── config.rb │ │ ├── custom_code.rb │ │ ├── docs.rb │ │ ├── examples.rb │ │ ├── import.rb │ │ ├── product~compile.yaml │ │ ├── sub_template.rb │ │ └── virtual_fields.rb │ ├── terraform_cloud_docs.rb │ ├── terraform_oics.rb │ └── terraform_validator.rb ├── spec │ ├── .rubocop.yml │ ├── compiler_spec.rb │ ├── copyright.rb │ ├── copyright_spec.rb │ ├── data │ │ ├── bad-property-reference-config.yaml │ │ ├── copyright_bad1.rb │ │ ├── copyright_bad2.rb │ │ ├── copyright_good1.rb │ │ ├── copyright_good2.rb │ │ ├── good-export-file.yaml │ │ ├── good-file.yaml │ │ ├── good-longuri.yaml │ │ ├── good-multi-file.yaml │ │ ├── good-multi2-file.yaml │ │ ├── good-resource.yaml │ │ ├── good-single-file.yaml │ │ ├── good-single-readonly-file.yaml │ │ ├── good-tf-override.yaml │ │ ├── resourceref-missingimports.yaml │ │ ├── resourceref-missingresource.yaml │ │ └── terraform-config.yaml │ ├── google_golang_spec.rb │ ├── google_python_spec.rb │ ├── object_spec.rb │ ├── override_runner_spec.rb │ ├── override_validator_spec.rb │ ├── product_spec.rb │ ├── provider_terraform_import_spec.rb │ ├── provider_terraform_resource_override_spec.rb │ ├── provider_terraform_spec.rb │ ├── resource_spec.rb │ ├── spec_helper.rb │ ├── string_utils_spec.rb │ ├── type_spec.rb │ └── yaml_validator_spec.rb ├── templates │ ├── LICENSE │ ├── ansible │ │ ├── README.md.erb │ │ ├── aliases │ │ ├── async.erb │ │ ├── documentation.erb │ │ ├── facts.erb │ │ ├── integration_test.erb │ │ ├── integration_test_variables.erb │ │ ├── module.erb │ │ ├── pattern.py.erb │ │ ├── properties.erb │ │ ├── provider_helpers.erb │ │ ├── resource.erb │ │ ├── tests_main.erb │ │ ├── transport.erb │ │ ├── update_mask.erb │ │ └── verifiers │ │ │ ├── bash.yaml.erb │ │ │ └── facts.yaml.erb │ ├── async.yaml.erb │ ├── autogen_notice.erb │ ├── inspec │ │ ├── doc_template.md.erb │ │ ├── examples │ │ │ ├── attributes │ │ │ │ └── external_attributes.yml │ │ │ ├── google_access_context_manager_access_level │ │ │ │ ├── google_access_context_manager_access_level.erb │ │ │ │ ├── google_access_context_manager_access_level_attributes.erb │ │ │ │ └── google_access_context_manager_access_levels.erb │ │ │ ├── google_access_context_manager_access_policy │ │ │ │ ├── google_access_context_manager_access_policies.erb │ │ │ │ ├── google_access_context_manager_access_policy.erb │ │ │ │ └── google_access_context_manager_access_policy_attributes.erb │ │ │ ├── google_access_context_manager_service_perimeter │ │ │ │ ├── google_access_context_manager_service_perimeter.erb │ │ │ │ ├── google_access_context_manager_service_perimeter_attributes.erb │ │ │ │ └── google_access_context_manager_service_perimeters.erb │ │ │ ├── google_appengine_standard_app_version │ │ │ │ ├── google_appengine_standard_app_version.erb │ │ │ │ ├── google_appengine_standard_app_version_attributes.erb │ │ │ │ └── google_appengine_standard_app_versions.erb │ │ │ ├── google_bigquery_dataset │ │ │ │ ├── google_bigquery_dataset.erb │ │ │ │ ├── google_bigquery_dataset_attributes.erb │ │ │ │ └── google_bigquery_datasets.erb │ │ │ ├── google_bigquery_table │ │ │ │ ├── google_bigquery_table.erb │ │ │ │ ├── google_bigquery_table_attributes.erb │ │ │ │ └── google_bigquery_tables.erb │ │ │ ├── google_billing_project_billing_info │ │ │ │ ├── google_billing_project_billing_info.erb │ │ │ │ └── google_billing_project_billing_info_attributes.erb │ │ │ ├── google_cloud_scheduler_job │ │ │ │ ├── google_cloud_scheduler_job.erb │ │ │ │ ├── google_cloud_scheduler_job_attributes.erb │ │ │ │ └── google_cloud_scheduler_jobs.erb │ │ │ ├── google_cloudbuild_trigger │ │ │ │ ├── google_cloudbuild_trigger.erb │ │ │ │ ├── google_cloudbuild_trigger_attributes.erb │ │ │ │ └── google_cloudbuild_triggers.erb │ │ │ ├── google_cloudfunctions_cloud_function │ │ │ │ ├── google_cloudfunctions_cloud_function.erb │ │ │ │ ├── google_cloudfunctions_cloud_function_attributes.erb │ │ │ │ └── google_cloudfunctions_cloud_functions.erb │ │ │ ├── google_compute_address │ │ │ │ ├── google_compute_address.erb │ │ │ │ ├── google_compute_address_attributes.erb │ │ │ │ └── google_compute_addresses.erb │ │ │ ├── google_compute_autoscaler │ │ │ │ ├── google_compute_autoscaler.erb │ │ │ │ ├── google_compute_autoscaler_attributes.erb │ │ │ │ └── google_compute_autoscalers.erb │ │ │ ├── google_compute_backend_bucket │ │ │ │ ├── google_compute_backend_bucket.erb │ │ │ │ ├── google_compute_backend_bucket_attributes.erb │ │ │ │ └── google_compute_backend_buckets.erb │ │ │ ├── google_compute_backend_service │ │ │ │ ├── google_compute_backend_service.erb │ │ │ │ ├── google_compute_backend_service_attributes.erb │ │ │ │ └── google_compute_backend_services.erb │ │ │ ├── google_compute_disk │ │ │ │ ├── google_compute_disk.erb │ │ │ │ ├── google_compute_disk_attributes.erb │ │ │ │ └── google_compute_disks.erb │ │ │ ├── google_compute_firewall │ │ │ │ ├── google_compute_firewall.erb │ │ │ │ ├── google_compute_firewall_attributes.erb │ │ │ │ └── google_compute_firewalls.erb │ │ │ ├── google_compute_forwarding_rule │ │ │ │ ├── google_compute_forwarding_rule.erb │ │ │ │ ├── google_compute_forwarding_rule_attributes.erb │ │ │ │ └── google_compute_forwarding_rules.erb │ │ │ ├── google_compute_global_address │ │ │ │ ├── google_compute_global_address.erb │ │ │ │ ├── google_compute_global_address_attributes.erb │ │ │ │ └── google_compute_global_addresses.erb │ │ │ ├── google_compute_global_forwarding_rule │ │ │ │ ├── google_compute_global_forwarding_rule.erb │ │ │ │ ├── google_compute_global_forwarding_rule_attributes.erb │ │ │ │ └── google_compute_global_forwarding_rules.erb │ │ │ ├── google_compute_health_check │ │ │ │ ├── google_compute_health_check.erb │ │ │ │ ├── google_compute_health_check_attributes.erb │ │ │ │ └── google_compute_health_checks.erb │ │ │ ├── google_compute_http_health_check │ │ │ │ ├── google_compute_http_health_check.erb │ │ │ │ ├── google_compute_http_health_check_attributes.erb │ │ │ │ └── google_compute_http_health_checks.erb │ │ │ ├── google_compute_https_health_check │ │ │ │ ├── google_compute_https_health_check.erb │ │ │ │ ├── google_compute_https_health_check_attributes.erb │ │ │ │ └── google_compute_https_health_checks.erb │ │ │ ├── google_compute_image │ │ │ │ ├── google_compute_image.erb │ │ │ │ └── google_compute_image_attributes.erb │ │ │ ├── google_compute_instance │ │ │ │ ├── google_compute_instance.erb │ │ │ │ ├── google_compute_instance_attributes.erb │ │ │ │ └── google_compute_instances.erb │ │ │ ├── google_compute_instance_group │ │ │ │ ├── google_compute_instance_group.erb │ │ │ │ ├── google_compute_instance_group_attributes.erb │ │ │ │ └── google_compute_instance_groups.erb │ │ │ ├── google_compute_instance_group_manager │ │ │ │ ├── google_compute_instance_group_manager.erb │ │ │ │ ├── google_compute_instance_group_manager_attributes.erb │ │ │ │ └── google_compute_instance_group_managers.erb │ │ │ ├── google_compute_instance_template │ │ │ │ ├── google_compute_instance_template.erb │ │ │ │ ├── google_compute_instance_template_attributes.erb │ │ │ │ └── google_compute_instance_templates.erb │ │ │ ├── google_compute_network │ │ │ │ ├── google_compute_network.erb │ │ │ │ ├── google_compute_network_attributes.erb │ │ │ │ └── google_compute_networks.erb │ │ │ ├── google_compute_network_endpoint_group │ │ │ │ ├── google_compute_network_endpoint_group.erb │ │ │ │ ├── google_compute_network_endpoint_group_attributes.erb │ │ │ │ └── google_compute_network_endpoint_groups.erb │ │ │ ├── google_compute_node_group │ │ │ │ ├── google_compute_node_group.erb │ │ │ │ ├── google_compute_node_group_attributes.erb │ │ │ │ └── google_compute_node_groups.erb │ │ │ ├── google_compute_node_template │ │ │ │ ├── google_compute_node_template.erb │ │ │ │ ├── google_compute_node_template_attributes.erb │ │ │ │ └── google_compute_node_templates.erb │ │ │ ├── google_compute_project_info │ │ │ │ ├── google_compute_project_info.erb │ │ │ │ └── google_compute_project_info_attributes.erb │ │ │ ├── google_compute_region │ │ │ │ ├── google_compute_region.erb │ │ │ │ ├── google_compute_region_attributes.erb │ │ │ │ └── google_compute_regions.erb │ │ │ ├── google_compute_region_backend_service │ │ │ │ ├── google_compute_region_backend_service.erb │ │ │ │ ├── google_compute_region_backend_service_attributes.erb │ │ │ │ └── google_compute_region_backend_services.erb │ │ │ ├── google_compute_region_instance_group_manager │ │ │ │ ├── google_compute_region_instance_group_manager.erb │ │ │ │ ├── google_compute_region_instance_group_manager_attributes.erb │ │ │ │ └── google_compute_region_instance_group_managers.erb │ │ │ ├── google_compute_route │ │ │ │ ├── google_compute_route.erb │ │ │ │ ├── google_compute_route_attributes.erb │ │ │ │ └── google_compute_routes.erb │ │ │ ├── google_compute_router │ │ │ │ ├── google_compute_router.erb │ │ │ │ ├── google_compute_router_attributes.erb │ │ │ │ └── google_compute_routers.erb │ │ │ ├── google_compute_router_nat │ │ │ │ ├── google_compute_router_nat.erb │ │ │ │ ├── google_compute_router_nat_attributes.erb │ │ │ │ └── google_compute_router_nats.erb │ │ │ ├── google_compute_security_policy │ │ │ │ ├── google_compute_security_policies.erb │ │ │ │ ├── google_compute_security_policy.erb │ │ │ │ └── google_compute_security_policy_attributes.erb │ │ │ ├── google_compute_snapshot │ │ │ │ ├── google_compute_snapshot.erb │ │ │ │ ├── google_compute_snapshot_attributes.erb │ │ │ │ └── google_compute_snapshots.erb │ │ │ ├── google_compute_ssl_certificate │ │ │ │ ├── google_compute_ssl_certificate.erb │ │ │ │ ├── google_compute_ssl_certificate_attributes.erb │ │ │ │ └── google_compute_ssl_certificates.erb │ │ │ ├── google_compute_ssl_policy │ │ │ │ ├── google_compute_ssl_policies.erb │ │ │ │ ├── google_compute_ssl_policy.erb │ │ │ │ └── google_compute_ssl_policy_attributes.erb │ │ │ ├── google_compute_subnetwork │ │ │ │ ├── google_compute_subnetwork.erb │ │ │ │ ├── google_compute_subnetwork_attributes.erb │ │ │ │ └── google_compute_subnetworks.erb │ │ │ ├── google_compute_target_http_proxy │ │ │ │ ├── google_compute_target_http_proxies.erb │ │ │ │ ├── google_compute_target_http_proxy.erb │ │ │ │ └── google_compute_target_http_proxy_attributes.erb │ │ │ ├── google_compute_target_https_proxy │ │ │ │ ├── google_compute_target_https_proxies.erb │ │ │ │ ├── google_compute_target_https_proxy.erb │ │ │ │ └── google_compute_target_https_proxy_attributes.erb │ │ │ ├── google_compute_target_pool │ │ │ │ ├── google_compute_target_pool.erb │ │ │ │ ├── google_compute_target_pool_attributes.erb │ │ │ │ └── google_compute_target_pools.erb │ │ │ ├── google_compute_target_tcp_proxy │ │ │ │ ├── google_compute_target_tcp_proxies.erb │ │ │ │ ├── google_compute_target_tcp_proxy.erb │ │ │ │ └── google_compute_target_tcp_proxy_attributes.erb │ │ │ ├── google_compute_url_map │ │ │ │ ├── google_compute_url_map.erb │ │ │ │ ├── google_compute_url_map_attributes.erb │ │ │ │ └── google_compute_url_maps.erb │ │ │ ├── google_compute_vpn_tunnel │ │ │ │ ├── google_compute_vpn_tunnel.erb │ │ │ │ ├── google_compute_vpn_tunnel_attributes.erb │ │ │ │ └── google_compute_vpn_tunnels.erb │ │ │ ├── google_compute_zone │ │ │ │ ├── google_compute_zone.erb │ │ │ │ ├── google_compute_zone_attributes.erb │ │ │ │ └── google_compute_zones.erb │ │ │ ├── google_container_cluster │ │ │ │ ├── google_container_cluster.erb │ │ │ │ ├── google_container_cluster_attributes.erb │ │ │ │ └── google_container_clusters.erb │ │ │ ├── google_container_node_pool │ │ │ │ ├── google_container_node_pool.erb │ │ │ │ ├── google_container_node_pool_attributes.erb │ │ │ │ └── google_container_node_pools.erb │ │ │ ├── google_dataproc_cluster │ │ │ │ ├── google_dataproc_cluster.erb │ │ │ │ ├── google_dataproc_cluster_attributes.erb │ │ │ │ └── google_dataproc_clusters.erb │ │ │ ├── google_dns_managed_zone │ │ │ │ ├── google_dns_managed_zone.erb │ │ │ │ ├── google_dns_managed_zone_attributes.erb │ │ │ │ └── google_dns_managed_zones.erb │ │ │ ├── google_dns_resource_record_set │ │ │ │ ├── google_dns_resource_record_set.erb │ │ │ │ ├── google_dns_resource_record_set_attributes.erb │ │ │ │ └── google_dns_resource_record_sets.erb │ │ │ ├── google_filestore_instance │ │ │ │ ├── google_filestore_instance.erb │ │ │ │ ├── google_filestore_instance_attributes.erb │ │ │ │ └── google_filestore_instances.erb │ │ │ ├── google_iam_organization_custom_role │ │ │ │ ├── google_iam_organization_custom_role.erb │ │ │ │ ├── google_iam_organization_custom_role_attributes.erb │ │ │ │ └── google_iam_organization_custom_roles.erb │ │ │ ├── google_kms_crypto_key │ │ │ │ ├── google_kms_crypto_key.erb │ │ │ │ ├── google_kms_crypto_key_attributes.erb │ │ │ │ └── google_kms_crypto_keys.erb │ │ │ ├── google_kms_key_ring │ │ │ │ ├── google_kms_key_ring.erb │ │ │ │ ├── google_kms_key_ring_attributes.erb │ │ │ │ └── google_kms_key_rings.erb │ │ │ ├── google_logging_folder_exclusion │ │ │ │ ├── google_logging_folder_exclusion.erb │ │ │ │ ├── google_logging_folder_exclusion_attributes.erb │ │ │ │ └── google_logging_folder_exclusions.erb │ │ │ ├── google_logging_folder_log_sink │ │ │ │ ├── google_logging_folder_log_sink.erb │ │ │ │ ├── google_logging_folder_log_sink_attributes.erb │ │ │ │ └── google_logging_folder_log_sinks.erb │ │ │ ├── google_logging_organization_log_sink │ │ │ │ ├── google_logging_organization_log_sink.erb │ │ │ │ ├── google_logging_organization_log_sink_attributes.erb │ │ │ │ └── google_logging_organization_log_sinks.erb │ │ │ ├── google_logging_project_exclusion │ │ │ │ ├── google_logging_project_exclusion.erb │ │ │ │ ├── google_logging_project_exclusion_attributes.erb │ │ │ │ └── google_logging_project_exclusions.erb │ │ │ ├── google_logging_project_sink │ │ │ │ ├── google_logging_project_sink.erb │ │ │ │ ├── google_logging_project_sink_attributes.erb │ │ │ │ └── google_logging_project_sinks.erb │ │ │ ├── google_memcache_instance │ │ │ │ ├── google_memcache_instance.erb │ │ │ │ ├── google_memcache_instance_attributes.erb │ │ │ │ └── google_memcache_instances.erb │ │ │ ├── google_ml_engine_model │ │ │ │ ├── google_ml_engine_model.erb │ │ │ │ ├── google_ml_engine_model_attributes.erb │ │ │ │ └── google_ml_engine_models.erb │ │ │ ├── google_organization │ │ │ │ ├── google_organization.erb │ │ │ │ ├── google_organization_attributes.erb │ │ │ │ └── google_organizations.erb │ │ │ ├── google_project │ │ │ │ ├── google_project.erb │ │ │ │ ├── google_project_attributes.erb │ │ │ │ └── google_projects.erb │ │ │ ├── google_project_alert_policy │ │ │ │ ├── google_project_alert_policies.erb │ │ │ │ ├── google_project_alert_policy.erb │ │ │ │ └── google_project_alert_policy_attributes.erb │ │ │ ├── google_project_iam_custom_role │ │ │ │ ├── google_project_iam_custom_role.erb │ │ │ │ ├── google_project_iam_custom_role_attributes.erb │ │ │ │ └── google_project_iam_custom_roles.erb │ │ │ ├── google_project_metric │ │ │ │ ├── google_project_metric.erb │ │ │ │ ├── google_project_metric_attributes.erb │ │ │ │ └── google_project_metrics.erb │ │ │ ├── google_project_service │ │ │ │ ├── google_project_service.erb │ │ │ │ ├── google_project_service_attributes.erb │ │ │ │ └── google_project_services.erb │ │ │ ├── google_pubsub_subscription │ │ │ │ ├── google_pubsub_subscription.erb │ │ │ │ ├── google_pubsub_subscription_attributes.erb │ │ │ │ └── google_pubsub_subscriptions.erb │ │ │ ├── google_pubsub_topic │ │ │ │ ├── google_pubsub_topic.erb │ │ │ │ ├── google_pubsub_topic_attributes.erb │ │ │ │ └── google_pubsub_topics.erb │ │ │ ├── google_redis_instance │ │ │ │ ├── google_redis_instance.erb │ │ │ │ ├── google_redis_instance_attributes.erb │ │ │ │ └── google_redis_instances.erb │ │ │ ├── google_resourcemanager_folder │ │ │ │ ├── google_resourcemanager_folder.erb │ │ │ │ ├── google_resourcemanager_folder_attributes.erb │ │ │ │ └── google_resourcemanager_folders.erb │ │ │ ├── google_runtime_config_config │ │ │ │ ├── google_runtime_config_config.erb │ │ │ │ ├── google_runtime_config_config_attributes.erb │ │ │ │ └── google_runtime_config_configs.erb │ │ │ ├── google_runtime_config_variable │ │ │ │ ├── google_runtime_config_variable.erb │ │ │ │ ├── google_runtime_config_variable_attributes.erb │ │ │ │ └── google_runtime_config_variables.erb │ │ │ ├── google_service_account │ │ │ │ ├── google_service_account.erb │ │ │ │ ├── google_service_account_attributes.erb │ │ │ │ └── google_service_accounts.erb │ │ │ ├── google_service_account_key │ │ │ │ ├── google_service_account_key.erb │ │ │ │ ├── google_service_account_key_attributes.erb │ │ │ │ └── google_service_account_keys.erb │ │ │ ├── google_sourcerepo_repository │ │ │ │ ├── google_sourcerepo_repositories.erb │ │ │ │ ├── google_sourcerepo_repository.erb │ │ │ │ └── google_sourcerepo_repository_attributes.erb │ │ │ ├── google_spanner_database │ │ │ │ ├── google_spanner_database.erb │ │ │ │ ├── google_spanner_database_attributes.erb │ │ │ │ └── google_spanner_databases.erb │ │ │ ├── google_spanner_instance │ │ │ │ ├── google_spanner_instance.erb │ │ │ │ ├── google_spanner_instance_attributes.erb │ │ │ │ └── google_spanner_instances.erb │ │ │ ├── google_sql_database_instance │ │ │ │ ├── google_sql_database_instance.erb │ │ │ │ ├── google_sql_database_instance_attributes.erb │ │ │ │ └── google_sql_database_instances.erb │ │ │ ├── google_sql_user │ │ │ │ ├── google_sql_user.erb │ │ │ │ ├── google_sql_user_attributes.erb │ │ │ │ └── google_sql_users.erb │ │ │ ├── google_storage_bucket │ │ │ │ ├── google_storage_bucket.erb │ │ │ │ ├── google_storage_bucket_attributes.erb │ │ │ │ └── google_storage_buckets.erb │ │ │ ├── google_storage_bucket_acl │ │ │ │ ├── google_storage_bucket_acl.erb │ │ │ │ └── google_storage_bucket_acl_attributes.erb │ │ │ ├── google_storage_bucket_object │ │ │ │ ├── google_storage_bucket_object.erb │ │ │ │ ├── google_storage_bucket_object_attributes.erb │ │ │ │ └── google_storage_bucket_objects.erb │ │ │ ├── google_storage_default_object_acl │ │ │ │ ├── google_storage_default_object_acl.erb │ │ │ │ └── google_storage_default_object_acl_attributes.erb │ │ │ └── google_storage_object_acl │ │ │ │ ├── google_storage_object_acl.erb │ │ │ │ └── google_storage_object_acl_attributes.erb │ │ ├── iam_binding │ │ │ ├── iam_binding.erb │ │ │ └── iam_binding.md.erb │ │ ├── iam_policy │ │ │ ├── iam_policy.erb │ │ │ ├── iam_policy.md.erb │ │ │ └── properties │ │ │ │ ├── iam_binding_condition.rb │ │ │ │ ├── iam_policy_audit_configs.rb │ │ │ │ ├── iam_policy_audit_configs_audit_log_configs.rb │ │ │ │ └── iam_policy_bindings.rb │ │ ├── integration_test_template.erb │ │ ├── nested_object.erb │ │ ├── plural_resource.erb │ │ ├── product_url.erb │ │ ├── singular_resource.erb │ │ ├── tests │ │ │ └── integration │ │ │ │ ├── build │ │ │ │ └── gcp-mm.tf │ │ │ │ └── configuration │ │ │ │ ├── hello-world.zip │ │ │ │ ├── index.js.zip │ │ │ │ └── mm-attributes.yml │ │ └── vcr_config.rb │ ├── license.erb │ ├── stackdriver.json │ ├── terraform │ │ ├── constants │ │ │ ├── access_approval.go.erb │ │ │ ├── backend_service.go.erb │ │ │ ├── bigquery_data_transfer.go.erb │ │ │ ├── bigquery_dataset.go.erb │ │ │ ├── bigquery_dataset_access.go.erb │ │ │ ├── bigquery_job.go │ │ │ ├── billing_budget.erb │ │ │ ├── binaryauthorization_attestor.go │ │ │ ├── binaryauthorization_policy.erb │ │ │ ├── cert_manager.erb │ │ │ ├── cloud_run_domain_mapping.go.erb │ │ │ ├── cloud_run_service.go.erb │ │ │ ├── cloud_tasks_retry_config_custom_diff.go │ │ │ ├── cloudbuild_trigger.erb │ │ │ ├── cloudiot.go.erb │ │ │ ├── deployment_manager_deployment.go.erb │ │ │ ├── disk.erb │ │ │ ├── domain_mapping.erb │ │ │ ├── filestore.erb │ │ │ ├── firestore_index.go.erb │ │ │ ├── firewall.erb │ │ │ ├── gameserver_cluster_custom_diff.go │ │ │ ├── gke_hub_membership_diff.go │ │ │ ├── health_check.erb │ │ │ ├── iam_workload_identity_pool.go.erb │ │ │ ├── iam_workload_identity_pool_provider.go.erb │ │ │ ├── interconnect_attachment.go.erb │ │ │ ├── monitoring_notification_channel.go.erb │ │ │ ├── monitoring_slo.go.erb │ │ │ ├── monitoring_uptime_check_config.go.erb │ │ │ ├── notebooks_instance.go │ │ │ ├── notebooks_runtime.go │ │ │ ├── privateca_certificate_authority.go.erb │ │ │ ├── redis_instance.go │ │ │ ├── region_backend_service.go.erb │ │ │ ├── region_ssl_policy.erb │ │ │ ├── resource_dns_resource_record_set.go.erb │ │ │ ├── router.go.erb │ │ │ ├── router_nat.go.erb │ │ │ ├── scheduler.erb │ │ │ ├── secret_version.go.erb │ │ │ ├── source_repo_repository.go.erb │ │ │ ├── spanner_database.go.erb │ │ │ ├── spanner_instance.go.erb │ │ │ ├── ssl_policy.erb │ │ │ ├── subnetwork.erb │ │ │ ├── subscription.go.erb │ │ │ ├── tpu_node.erb │ │ │ ├── vertex_ai_featurestore_entitytype.go.erb │ │ │ └── vpn_tunnel.erb │ │ ├── custom_check_destroy │ │ │ ├── appengine.go.erb │ │ │ ├── consumer_quota_override.go.erb │ │ │ ├── iam_workload_identity_pool.go.erb │ │ │ ├── iam_workload_identity_pool_provider.go.erb │ │ │ ├── privateca_certificate.go.erb │ │ │ ├── privateca_certificate_authority.go.erb │ │ │ ├── skip_delete_during_test.go.erb │ │ │ └── storage_hmac_key.go.erb │ │ ├── custom_create │ │ │ └── gameservice_rollout_create.go │ │ ├── custom_delete │ │ │ ├── active_directory_domain_trust.go.erb │ │ │ ├── appversion_delete.go.erb │ │ │ ├── clear_folder_access_approval_settings.go.erb │ │ │ ├── clear_organization_access_approval_settings.go.erb │ │ │ ├── clear_project_access_approval_settings.go.erb │ │ │ ├── kms_crypto_key.erb │ │ │ ├── per_instance_config.go.erb │ │ │ ├── region_per_instance_config.go.erb │ │ │ ├── replace_all_access_levels_empty_list.go.erb │ │ │ └── replace_all_service_perimeters_empty_list.go.erb │ │ ├── custom_expand │ │ │ ├── base64.go.erb │ │ │ ├── bigquery_access_role.go.erb │ │ │ ├── bigquery_dataset_ref.go.erb │ │ │ ├── bigquery_routine_ref.go.erb │ │ │ ├── bigquery_table_ref.go.erb │ │ │ ├── bigquery_table_ref_array.go.erb │ │ │ ├── bigtable_app_profile_routing.erb │ │ │ ├── billing_budget_budget_filter_labels.erb │ │ │ ├── binaryauthorization_attestors.erb │ │ │ ├── bool_to_object.go.erb │ │ │ ├── bool_to_upper_string.erb │ │ │ ├── cloud_run_service_revision_name.erb │ │ │ ├── compute_full_url.erb │ │ │ ├── computed_lite_subscription_topic.erb │ │ │ ├── computed_subscription_topic.erb │ │ │ ├── container_analysis_note.erb │ │ │ ├── data_catalog_tag.go.erb │ │ │ ├── days_to_duration_string.go.erb │ │ │ ├── default_to_project.go.erb │ │ │ ├── dns_managed_zone_private_visibility_config.go.erb │ │ │ ├── firewall_log_config.go.erb │ │ │ ├── gke_hub_membership.erb │ │ │ ├── json_schema.erb │ │ │ ├── name_or_name_prefix.go.erb │ │ │ ├── network_full_url.erb │ │ │ ├── network_management_connectivity_test_name.go.erb │ │ │ ├── preserved_state_disks.go.erb │ │ │ ├── privateca_certificate_509_config.go.erb │ │ │ ├── pubsublite_topic_reservation_config_throughput_reservation.go.erb │ │ │ ├── qualify_queue_name.go.erb │ │ │ ├── redis_instance_authorized_network.erb │ │ │ ├── reference_to_backend.erb │ │ │ ├── resource_from_self_link.go.erb │ │ │ ├── resourceref_as_string.go.erb │ │ │ ├── route_gateway.erb │ │ │ ├── route_instance.erb │ │ │ ├── sd_full_url.erb │ │ │ ├── secret_version_enable.go.erb │ │ │ ├── self_link_from_name.erb │ │ │ ├── set_to_list.erb │ │ │ ├── shortname_to_url.go.erb │ │ │ ├── spanner_instance_config.go.erb │ │ │ └── subnetwork_log_config.go.erb │ │ ├── custom_flatten │ │ │ ├── app_version.go.erb │ │ │ ├── bigquery_connection_flatten.go.erb │ │ │ ├── bigquery_dataset_location.go.erb │ │ │ ├── bigquery_dataset_ref.go.erb │ │ │ ├── bigquery_kms_version.go.erb │ │ │ ├── bigquery_table_ref.go.erb │ │ │ ├── bigquery_table_ref_copy_destinationtable.go.erb │ │ │ ├── bigquery_table_ref_copy_sourcetables.go.erb │ │ │ ├── bigquery_table_ref_extract_sourcetable.go.erb │ │ │ ├── bigquery_table_ref_load_destinationtable.go.erb │ │ │ ├── bigquery_table_ref_query_destinationtable.go.erb │ │ │ ├── bigtable_app_profile_routing.erb │ │ │ ├── billing_budget_budget_filter_labels.erb │ │ │ ├── certificate_manager_certificate_managed_dns_auth.go.erb │ │ │ ├── cloud_scheduler_paused.go.erb │ │ │ ├── cloudbuild_approval_required.go.erb │ │ │ ├── cloudfunctions2_function_source_bucket.go.erb │ │ │ ├── cloudfunctions2_function_source_object.go.erb │ │ │ ├── cloudrun_ignore_force_override.go.erb │ │ │ ├── cloudscheduler_job_appenginerouting.go.erb │ │ │ ├── cloudtasks_queue_appenginerouting.go.erb │ │ │ ├── compute_backend_service_iap_oauth2_client_secret.go.erb │ │ │ ├── compute_snapshot_snapshot_encryption_raw_key.go.erb │ │ │ ├── consumer_quote_override_override_value.go.erb │ │ │ ├── data_catalog_tag.go.erb │ │ │ ├── default_if_empty.erb │ │ │ ├── duration_string_to_days.go.erb │ │ │ ├── firewall_log_config.go.erb │ │ │ ├── float64_to_int.go.erb │ │ │ ├── float64_to_int_to_string.go.erb │ │ │ ├── float64_to_string.go.erb │ │ │ ├── full_to_relative_path.erb │ │ │ ├── group_id_to_name.erb │ │ │ ├── guard_self_link.go.erb │ │ │ ├── guard_self_link_array.go.erb │ │ │ ├── health_check_log_config.go.erb │ │ │ ├── http_headers.erb │ │ │ ├── id_from_name.erb │ │ │ ├── json_schema.erb │ │ │ ├── json_to_string_map.go.erb │ │ │ ├── monitoring_slo_availability_sli.go.erb │ │ │ ├── name_from_self_link.erb │ │ │ ├── network_services_timeout_mirror.go.erb │ │ │ ├── object_to_bool.go.erb │ │ │ ├── os_config_patch_deployment_recurring_schedule_time_of_day.go.erb │ │ │ ├── preserved_state_disks.go.erb │ │ │ ├── privateca_certificate_509_config.go.erb │ │ │ ├── repository_short_name_from_name.go.erb │ │ │ ├── scan_config_auth_custom_password.go.erb │ │ │ ├── scan_config_auth_google_password.go.erb │ │ │ ├── secret_version_access.go.erb │ │ │ ├── secret_version_enable.go.erb │ │ │ ├── set_to_project.go.erb │ │ │ ├── sha256.erb │ │ │ ├── string_to_bool.erb │ │ │ ├── string_to_bool_default_true.erb │ │ │ ├── subnetwork_log_config.go.erb │ │ │ ├── tags_tag_binding_name.erb │ │ │ └── uptime_check_http_password.erb │ │ ├── custom_import │ │ │ ├── access_context_manager_service_perimeter_resource.go.erb │ │ │ ├── apigee_endpoint_attachment.go.erb │ │ │ ├── apigee_environment.go.erb │ │ │ ├── apigee_environment_group.go.erb │ │ │ ├── apigee_environment_group_attachment.go.erb │ │ │ ├── apigee_instance.go.erb │ │ │ ├── apigee_instance_attachment.go.erb │ │ │ ├── apigee_organization.go.erb │ │ │ ├── cloud_asset_feed.go.erb │ │ │ ├── compute_global_network_endpoint.go.erb │ │ │ ├── compute_network_endpoint.go.erb │ │ │ ├── data_catalog_entry.go.erb │ │ │ ├── data_catalog_entry_group.go.erb │ │ │ ├── data_catalog_tag.go.erb │ │ │ ├── data_catalog_tag_template.go.erb │ │ │ ├── data_catalog_taxonomy.go.erb │ │ │ ├── dialogflowcx_entity_type.go.erb │ │ │ ├── dialogflowcx_environment.go.erb │ │ │ ├── dialogflowcx_flow.go.erb │ │ │ ├── dialogflowcx_intent.go.erb │ │ │ ├── dialogflowcx_page.go.erb │ │ │ ├── dialogflowcx_version.go.erb │ │ │ ├── dlp_import.go.erb │ │ │ ├── extract_taxonomy.go.erb │ │ │ ├── firestore_document.go.erb │ │ │ ├── healthcare_dicom_store.go.erb │ │ │ ├── healthcare_fhir_store.go.erb │ │ │ ├── healthcare_hl7_v2_store.go.erb │ │ │ ├── iap_brand.go.erb │ │ │ ├── iap_client.go.erb │ │ │ ├── index_self_link_as_name_set_project.go.erb │ │ │ ├── kms_crypto_key.go.erb │ │ │ ├── kms_key_ring_import_job.go.erb │ │ │ ├── scc_source_self_link_as_name_set_organization.go.erb │ │ │ ├── secret_version.go.erb │ │ │ ├── self_link_as_name.erb │ │ │ ├── self_link_as_name_set_project.go.erb │ │ │ ├── service_directory_endpoint.go.erb │ │ │ ├── service_directory_namespace.go.erb │ │ │ ├── service_directory_service.go.erb │ │ │ ├── set_access_policy_parent_from_access_policy.go.erb │ │ │ ├── set_access_policy_parent_from_self_link.go.erb │ │ │ ├── set_id_name_with_slashes.go.erb │ │ │ └── tags_tag_binding.go.erb │ │ ├── decoders │ │ │ ├── avoid_meaningless_project_update.erb │ │ │ ├── backend_service.go.erb │ │ │ ├── bigquery_data_transfer.go.erb │ │ │ ├── cloud_run.go.erb │ │ │ ├── cloudiot_device_registry.go.erb │ │ │ ├── compute_disk_resource_policies_attachment.go.erb │ │ │ ├── containeranalysis_attestation_field_name.go.erb │ │ │ ├── containeranalysis_occurrence.go.erb │ │ │ ├── disk.erb │ │ │ ├── dlp_stored_info_type.go.erb │ │ │ ├── firestore_document.go.erb │ │ │ ├── kms.go.erb │ │ │ ├── long_name_to_self_link.go.erb │ │ │ ├── monitoring_notification_channel.go.erb │ │ │ ├── network_endpoint.go.erb │ │ │ ├── noop.go.erb │ │ │ ├── os_config_patch_deployment.go.erb │ │ │ ├── redis_instance.go.erb │ │ │ ├── region_backend_service.go.erb │ │ │ ├── route.erb │ │ │ ├── snapshot.go.erb │ │ │ ├── spanner_database.go.erb │ │ │ ├── spanner_instance.go.erb │ │ │ ├── sql_source_representation_instance.go.erb │ │ │ ├── treat_deleted_state_as_gone.go.erb │ │ │ ├── unwrap_global_neg.go.erb │ │ │ └── unwrap_resource.go.erb │ │ ├── encoders │ │ │ ├── access_level_never_send_parent.go.erb │ │ │ ├── active_directory_domain_trust.go.erb │ │ │ ├── api_config.go.erb │ │ │ ├── apigee_organization.go.erb │ │ │ ├── backend_service.go.erb │ │ │ ├── bigquery_connection.go.erb │ │ │ ├── bigquery_data_transfer.go.erb │ │ │ ├── bigquery_job.go.erb │ │ │ ├── bigtable_app_profile.go.erb │ │ │ ├── cloud_asset_feed.go.erb │ │ │ ├── cloud_run_domain_mapping.go.erb │ │ │ ├── cloud_run_service.go.erb │ │ │ ├── cloud_scheduler.go.erb │ │ │ ├── cloudiot_device_registry.go.erb │ │ │ ├── compute_disk_resource_policies_attachment.go.erb │ │ │ ├── compute_global_network_endpoint.go.erb │ │ │ ├── compute_network_endpoint.go.erb │ │ │ ├── compute_per_instance_config.go.erb │ │ │ ├── compute_region_disk_resource_policies_attachment.go.erb │ │ │ ├── containeranalysis_attestation_field_name.go.erb │ │ │ ├── containeranalysis_occurrence.go.erb │ │ │ ├── data_catalog_tag.go.erb │ │ │ ├── disk.erb │ │ │ ├── dlp_stored_info_type.go.erb │ │ │ ├── flex_app_version.go.erb │ │ │ ├── health_check_type.erb │ │ │ ├── index.go.erb │ │ │ ├── kms_crypto_key.go.erb │ │ │ ├── monitoring_notification_channel.go.erb │ │ │ ├── monitoring_service.go.erb │ │ │ ├── monitoring_slo.go.erb │ │ │ ├── network_peering_routes_config.go.erb │ │ │ ├── no_send_name.go.erb │ │ │ ├── normalize_group.go.erb │ │ │ ├── os_config_patch_deployment.go.erb │ │ │ ├── pubsub_lite.erb │ │ │ ├── redis_location_id_for_fallback_zone.go.erb │ │ │ ├── region_backend_service.go.erb │ │ │ ├── send_nil_body.go.erb │ │ │ ├── spanner_database.go.erb │ │ │ ├── spanner_instance.go.erb │ │ │ ├── spanner_instance_update.go.erb │ │ │ ├── sql_source_representation_instance.go.erb │ │ │ ├── vpn_tunnel.go.erb │ │ │ ├── workflow.go.erb │ │ │ └── wrap_object.go.erb │ │ ├── env_var_context.go.erb │ │ ├── examples │ │ │ ├── access_context_manager_access_level_basic.tf.erb │ │ │ ├── access_context_manager_access_level_condition_basic.tf.erb │ │ │ ├── access_context_manager_access_levels_basic.tf.erb │ │ │ ├── access_context_manager_access_policy_basic.tf.erb │ │ │ ├── access_context_manager_access_policy_scoped.tf.erb │ │ │ ├── access_context_manager_gcp_user_access_binding_basic.tf.erb │ │ │ ├── access_context_manager_service_perimeter_basic.tf.erb │ │ │ ├── access_context_manager_service_perimeter_dry-run.tf.erb │ │ │ ├── access_context_manager_service_perimeter_resource_basic.tf.erb │ │ │ ├── access_context_manager_service_perimeter_secure_data_exchange.tf.erb │ │ │ ├── access_context_manager_service_perimeters_basic.tf.erb │ │ │ ├── active_directory_domain_basic.tf.erb │ │ │ ├── active_directory_domain_trust_basic.tf.erb │ │ │ ├── active_directory_peering_basic.tf.erb │ │ │ ├── address_basic.tf.erb │ │ │ ├── address_with_gce_endpoint.tf.erb │ │ │ ├── address_with_shared_loadbalancer_vip.tf.erb │ │ │ ├── address_with_subnetwork.tf.erb │ │ │ ├── apigateway_api_basic.tf.erb │ │ │ ├── apigateway_api_config_basic.tf.erb │ │ │ ├── apigateway_api_config_full.tf.erb │ │ │ ├── apigateway_api_config_grpc.tf.erb │ │ │ ├── apigateway_api_config_grpc_full.tf.erb │ │ │ ├── apigateway_api_full.tf.erb │ │ │ ├── apigateway_gateway_basic.tf.erb │ │ │ ├── apigateway_gateway_full.tf.erb │ │ │ ├── apigee_endpoint_attachment_basic.tf.erb │ │ │ ├── apigee_endpoint_attachment_basic_test.tf.erb │ │ │ ├── apigee_environment_basic.tf.erb │ │ │ ├── apigee_environment_basic_deployment_apiproxy_type_test.tf.erb │ │ │ ├── apigee_environment_basic_test.tf.erb │ │ │ ├── apigee_environment_group_attachment_basic.tf.erb │ │ │ ├── apigee_environment_group_attachment_basic_test.tf.erb │ │ │ ├── apigee_environment_group_basic.tf.erb │ │ │ ├── apigee_environment_group_basic_test.tf.erb │ │ │ ├── apigee_environment_nodeconfig_test.tf.erb │ │ │ ├── apigee_instance_attachment_basic.tf.erb │ │ │ ├── apigee_instance_attachment_basic_test.tf.erb │ │ │ ├── apigee_instance_basic.tf.erb │ │ │ ├── apigee_instance_basic_test.tf.erb │ │ │ ├── apigee_instance_cidr_range.tf.erb │ │ │ ├── apigee_instance_cidr_range_test.tf.erb │ │ │ ├── apigee_instance_full.tf.erb │ │ │ ├── apigee_instance_full_test.tf.erb │ │ │ ├── apigee_instance_ip_range.tf.erb │ │ │ ├── apigee_instance_ip_range_test.tf.erb │ │ │ ├── apigee_instance_service_attachment_basic_test.tf.erb │ │ │ ├── apigee_organization_cloud_basic.tf.erb │ │ │ ├── apigee_organization_cloud_basic_test.tf.erb │ │ │ ├── apigee_organization_cloud_full.tf.erb │ │ │ ├── apigee_organization_cloud_full_test.tf.erb │ │ │ ├── apigee_organization_retention_test.tf.erb │ │ │ ├── app_engine_application_url_dispatch_rules_basic.tf.erb │ │ │ ├── app_engine_domain_mapping_basic.tf.erb │ │ │ ├── app_engine_firewall_rule_basic.tf.erb │ │ │ ├── app_engine_flexible_app_version.tf.erb │ │ │ ├── app_engine_service_network_settings.tf.erb │ │ │ ├── app_engine_service_split_traffic.tf.erb │ │ │ ├── app_engine_standard_app_version.tf.erb │ │ │ ├── artifact_registry_repository_basic.tf.erb │ │ │ ├── artifact_registry_repository_cmek.tf.erb │ │ │ ├── autoscaler_basic.tf.erb │ │ │ ├── autoscaler_single_instance.tf.erb │ │ │ ├── backend_bucket_basic.tf.erb │ │ │ ├── backend_bucket_bypass_cache.tf.erb │ │ │ ├── backend_bucket_coalescing.tf.erb │ │ │ ├── backend_bucket_full.tf.erb │ │ │ ├── backend_bucket_include_http_headers.tf.erb │ │ │ ├── backend_bucket_query_string_whitelist.tf.erb │ │ │ ├── backend_bucket_security_policy.tf.erb │ │ │ ├── backend_bucket_signed_url_key.tf.erb │ │ │ ├── backend_service_basic.tf.erb │ │ │ ├── backend_service_cache.tf.erb │ │ │ ├── backend_service_cache_include_named_cookies.tf.erb │ │ │ ├── backend_service_cache_simple.tf.erb │ │ │ ├── backend_service_external_managed.tf.erb │ │ │ ├── backend_service_network_endpoint.tf.erb │ │ │ ├── backend_service_signed_url_key.tf.erb │ │ │ ├── backend_service_traffic_director_ring_hash.tf.erb │ │ │ ├── backend_service_traffic_director_round_robin.tf.erb │ │ │ ├── base_configs │ │ │ │ ├── cloud_docs_example_file.tf.erb │ │ │ │ ├── documentation.tf.erb │ │ │ │ ├── example_backing_file.tf.erb │ │ │ │ ├── iam_test_file.go.erb │ │ │ │ ├── oics_example_file.tf.erb │ │ │ │ ├── test_body.go.erb │ │ │ │ ├── test_file.go.erb │ │ │ │ └── tutorial.md.erb │ │ │ ├── big_query_routine_basic.tf.erb │ │ │ ├── big_query_routine_json.tf.erb │ │ │ ├── big_query_routine_tvf.tf.erb │ │ │ ├── bigquery_bigquery_table.tf.erb │ │ │ ├── bigquery_connection_aws.tf.erb │ │ │ ├── bigquery_connection_azure.tf.erb │ │ │ ├── bigquery_connection_basic.tf.erb │ │ │ ├── bigquery_connection_cloud_resource.tf.erb │ │ │ ├── bigquery_connection_cloudspanner.tf.erb │ │ │ ├── bigquery_connection_full.tf.erb │ │ │ ├── bigquery_dataset_access_authorized_dataset.tf.erb │ │ │ ├── bigquery_dataset_access_basic_user.tf.erb │ │ │ ├── bigquery_dataset_access_view.tf.erb │ │ │ ├── bigquery_dataset_authorized_dataset.tf.erb │ │ │ ├── bigquery_dataset_authorized_view.tf.erb │ │ │ ├── bigquery_dataset_basic.tf.erb │ │ │ ├── bigquery_dataset_cmek.tf.erb │ │ │ ├── bigquery_job_copy.tf.erb │ │ │ ├── bigquery_job_copy_table_reference.tf.erb │ │ │ ├── bigquery_job_extract.tf.erb │ │ │ ├── bigquery_job_extract_table_reference.tf.erb │ │ │ ├── bigquery_job_load.tf.erb │ │ │ ├── bigquery_job_load_table_reference.tf.erb │ │ │ ├── bigquery_job_query.tf.erb │ │ │ ├── bigquery_job_query_table_reference.tf.erb │ │ │ ├── bigquery_reservation_basic.tf.erb │ │ │ ├── bigquerydatatransfer_config_scheduled_query.tf.erb │ │ │ ├── bigtable_app_profile_anycluster.tf.erb │ │ │ ├── bigtable_app_profile_multicluster.tf.erb │ │ │ ├── bigtable_app_profile_singlecluster.tf.erb │ │ │ ├── billing_budget_basic.tf.erb │ │ │ ├── billing_budget_customperiod.tf.erb │ │ │ ├── billing_budget_filter.tf.erb │ │ │ ├── billing_budget_lastperiod.tf.erb │ │ │ ├── billing_budget_notify.tf.erb │ │ │ ├── billing_budget_optional.tf.erb │ │ │ ├── binary_authorization_attestor_basic.tf.erb │ │ │ ├── binary_authorization_attestor_kms.tf.erb │ │ │ ├── binary_authorization_policy_basic.tf.erb │ │ │ ├── binary_authorization_policy_global_evaluation.tf.erb │ │ │ ├── certificate_manager_certificate_basic.tf.erb │ │ │ ├── certificate_manager_certificate_map_basic.tf.erb │ │ │ ├── certificate_manager_certificate_map_entry_full.tf.erb │ │ │ ├── certificate_manager_dns_authorization_basic.tf.erb │ │ │ ├── cloud_asset_folder_feed.tf.erb │ │ │ ├── cloud_asset_organization_feed.tf.erb │ │ │ ├── cloud_asset_project_feed.tf.erb │ │ │ ├── cloud_identity_group_membership.tf.erb │ │ │ ├── cloud_identity_group_membership_user.tf.erb │ │ │ ├── cloud_identity_groups_basic.tf.erb │ │ │ ├── cloud_run_anthos.tf.erb │ │ │ ├── cloud_run_domain_mapping_basic.tf.erb │ │ │ ├── cloud_run_service_add_tag.tf.erb │ │ │ ├── cloud_run_service_basic.tf.erb │ │ │ ├── cloud_run_service_configuration.tf.erb │ │ │ ├── cloud_run_service_deploy_tag.tf.erb │ │ │ ├── cloud_run_service_ingress.tf.erb │ │ │ ├── cloud_run_service_interservice.tf.erb │ │ │ ├── cloud_run_service_multiple_environment_variables.tf.erb │ │ │ ├── cloud_run_service_multiple_regions.tf.erb │ │ │ ├── cloud_run_service_noauth.tf.erb │ │ │ ├── cloud_run_service_pubsub.tf.erb │ │ │ ├── cloud_run_service_remove_tag.tf.erb │ │ │ ├── cloud_run_service_scheduled.tf.erb │ │ │ ├── cloud_run_service_secret_environment_variables.tf.erb │ │ │ ├── cloud_run_service_secret_volumes.tf.erb │ │ │ ├── cloud_run_service_secure_services.tf.erb │ │ │ ├── cloud_run_service_sql.tf.erb │ │ │ ├── cloud_run_service_static_outbound.tf.erb │ │ │ ├── cloud_run_service_tasks.tf.erb │ │ │ ├── cloud_run_service_traffic_gradual_rollout.tf.erb │ │ │ ├── cloud_run_service_traffic_latest_revision.tf.erb │ │ │ ├── cloud_run_service_traffic_rollback.tf.erb │ │ │ ├── cloud_run_service_traffic_split.tf.erb │ │ │ ├── cloud_run_service_traffic_split_tag.tf.erb │ │ │ ├── cloud_run_system_packages.tf.erb │ │ │ ├── cloud_tasks_queue_advanced.tf.erb │ │ │ ├── cloudbuild_trigger_build.tf.erb │ │ │ ├── cloudbuild_trigger_filename.tf.erb │ │ │ ├── cloudbuild_trigger_github.tf.erb │ │ │ ├── cloudbuild_trigger_include_build_logs.tf.erb │ │ │ ├── cloudbuild_trigger_manual.tf.erb │ │ │ ├── cloudbuild_trigger_pubsub_config.tf.erb │ │ │ ├── cloudbuild_trigger_service_account.tf.erb │ │ │ ├── cloudbuild_trigger_webhook_config.tf.erb │ │ │ ├── cloudfunctions2_basic.tf.erb │ │ │ ├── cloudfunctions2_basic_auditlogs.tf.erb │ │ │ ├── cloudfunctions2_basic_gcs.tf.erb │ │ │ ├── cloudfunctions2_full.tf.erb │ │ │ ├── cloudfunctions2_secret_env.tf.erb │ │ │ ├── cloudfunctions2_secret_volume.tf.erb │ │ │ ├── cloudfunctions_cloud_function.tf.erb │ │ │ ├── cloudiot_device_basic.tf.erb │ │ │ ├── cloudiot_device_full.tf.erb │ │ │ ├── cloudiot_device_registry_basic.tf.erb │ │ │ ├── cloudiot_device_registry_full.tf.erb │ │ │ ├── cloudiot_device_registry_single_event_notification_configs.tf.erb │ │ │ ├── cloudrun_service_access_control.tf.erb │ │ │ ├── cloudrun_service_identity.tf.erb │ │ │ ├── cloudrun_vpc_access_connector.tf.erb │ │ │ ├── compute_address_ipsec_interconnect.tf.erb │ │ │ ├── compute_ha_vpn_gateway_encrypted_interconnect.tf.erb │ │ │ ├── compute_interconnect_attachment_ipsec_encryption.tf.erb │ │ │ ├── compute_machine_image_kms.tf.erb │ │ │ ├── compute_packet_mirroring_full.tf.erb │ │ │ ├── compute_reservation.tf.erb │ │ │ ├── compute_router_encrypted_interconnect.tf.erb │ │ │ ├── consumer_quota_override.tf.erb │ │ │ ├── consumer_quota_override_custom_dimension.tf.erb │ │ │ ├── consumer_quota_override_zero_value.tf.erb │ │ │ ├── container_analysis_note_attestation_full.tf.erb │ │ │ ├── container_analysis_note_basic.tf.erb │ │ │ ├── container_analysis_occurence_attestation.tf.erb │ │ │ ├── container_analysis_occurrence_kms.tf.erb │ │ │ ├── data_catalog_entry_basic.tf.erb │ │ │ ├── data_catalog_entry_fileset.tf.erb │ │ │ ├── data_catalog_entry_full.tf.erb │ │ │ ├── data_catalog_entry_group_basic.tf.erb │ │ │ ├── data_catalog_entry_group_full.tf.erb │ │ │ ├── data_catalog_entry_group_tag.tf.erb │ │ │ ├── data_catalog_entry_tag_basic.tf.erb │ │ │ ├── data_catalog_entry_tag_false.tf.erb │ │ │ ├── data_catalog_entry_tag_full.tf.erb │ │ │ ├── data_catalog_tag_template_basic.tf.erb │ │ │ ├── data_catalog_taxonomies_policy_tag_basic.tf.erb │ │ │ ├── data_catalog_taxonomies_policy_tag_child_policies.tf.erb │ │ │ ├── data_catalog_taxonomy_basic.tf.erb │ │ │ ├── data_fusion_instance_basic.tf.erb │ │ │ ├── data_fusion_instance_full.tf.erb │ │ │ ├── dataproc_autoscaling_policy.tf.erb │ │ │ ├── dataproc_autoscaling_policy_basic.tf.erb │ │ │ ├── dataproc_metastore_federation_basic.tf.erb │ │ │ ├── dataproc_metastore_service_aux.tf.erb │ │ │ ├── dataproc_metastore_service_basic.tf.erb │ │ │ ├── dataproc_metastore_service_cmek_example.tf.erb │ │ │ ├── dataproc_metastore_service_cmek_test.tf.erb │ │ │ ├── dataproc_metastore_service_endpoint.tf.erb │ │ │ ├── dataproc_metastore_service_metadata.tf.erb │ │ │ ├── datastore_index.tf.erb │ │ │ ├── deployment_manager_deployment_basic.tf.erb │ │ │ ├── deployment_manager_deployment_imports.tf.erb │ │ │ ├── dialogflow_agent_full.tf.erb │ │ │ ├── dialogflow_entity_type_basic.tf.erb │ │ │ ├── dialogflow_fulfillment_basic.tf.erb │ │ │ ├── dialogflow_intent_basic.tf.erb │ │ │ ├── dialogflow_intent_full.tf.erb │ │ │ ├── dialogflowcx_agent_full.tf.erb │ │ │ ├── dialogflowcx_entity_type_full.tf.erb │ │ │ ├── dialogflowcx_environment_full.tf.erb │ │ │ ├── dialogflowcx_flow_full.tf.erb │ │ │ ├── dialogflowcx_intent_full.tf.erb │ │ │ ├── dialogflowcx_page_full.tf.erb │ │ │ ├── dialogflowcx_version_full.tf.erb │ │ │ ├── disk_basic.tf.erb │ │ │ ├── disk_resource_policy_attachment_basic.tf.erb │ │ │ ├── dlp_deidentify_template_basic.tf.erb │ │ │ ├── dlp_deidentify_template_skip_characters.tf.erb │ │ │ ├── dlp_inspect_template_basic.tf.erb │ │ │ ├── dlp_inspect_template_custom_type.tf.erb │ │ │ ├── dlp_job_trigger_basic.tf.erb │ │ │ ├── dlp_stored_info_type_basic.tf.erb │ │ │ ├── dlp_stored_info_type_dictionary.tf.erb │ │ │ ├── dlp_stored_info_type_large_custom_dictionary.tf.erb │ │ │ ├── dns_managed_zone_basic.tf.erb │ │ │ ├── dns_managed_zone_private.tf.erb │ │ │ ├── dns_managed_zone_private_forwarding.tf.erb │ │ │ ├── dns_managed_zone_private_peering.tf.erb │ │ │ ├── dns_managed_zone_quickstart.tf.erb │ │ │ ├── dns_managed_zone_service_directory.tf.erb │ │ │ ├── dns_policy_basic.tf.erb │ │ │ ├── dns_record_set_basic.tf.erb │ │ │ ├── dns_response_policy_basic.tf.erb │ │ │ ├── dns_response_policy_rule_basic.tf.erb │ │ │ ├── documentai_default_version.tf.erb │ │ │ ├── documentai_processor.tf.erb │ │ │ ├── documentai_processor_eu.tf.erb │ │ │ ├── endpoints_iam.tf.erb │ │ │ ├── essential_contact.tf.erb │ │ │ ├── eventarc_basic_tf.tf.erb │ │ │ ├── eventarc_workflows.tf.erb │ │ │ ├── external_cdn_lb_with_backend_bucket.tf.erb │ │ │ ├── external_http_lb_mig_backend.tf.erb │ │ │ ├── external_http_lb_mig_backend_custom_header.tf.erb │ │ │ ├── external_ssl_proxy_lb_mig_backend.tf.erb │ │ │ ├── external_tcp_proxy_lb_mig_backend.tf.erb │ │ │ ├── external_vpn_gateway.tf.erb │ │ │ ├── filestore_instance_basic.tf.erb │ │ │ ├── filestore_instance_enterprise.tf.erb │ │ │ ├── filestore_instance_full.tf.erb │ │ │ ├── firebase_project_basic.tf.erb │ │ │ ├── firebase_project_location_basic.tf.erb │ │ │ ├── firebase_web_app_basic.tf.erb │ │ │ ├── firestore_document_basic.tf.erb │ │ │ ├── firestore_document_nested_document.tf.erb │ │ │ ├── firestore_index_basic.tf.erb │ │ │ ├── firewall_basic.tf.erb │ │ │ ├── firewall_with_target_tags.tf.erb │ │ │ ├── flask_google_cloud_quickstart.tf.erb │ │ │ ├── folder_access_approval_active_key_version.tf.erb │ │ │ ├── folder_access_approval_full.tf.erb │ │ │ ├── forwarding_rule_basic.tf.erb │ │ │ ├── forwarding_rule_externallb.tf.erb │ │ │ ├── forwarding_rule_global_internallb.tf.erb │ │ │ ├── forwarding_rule_http_lb.tf.erb │ │ │ ├── forwarding_rule_internallb.tf.erb │ │ │ ├── forwarding_rule_l3_default.tf.erb │ │ │ ├── forwarding_rule_regional_http_xlb.tf.erb │ │ │ ├── game_service_cluster_basic.tf.erb │ │ │ ├── game_service_config_basic.tf.erb │ │ │ ├── game_service_deployment_basic.tf.erb │ │ │ ├── game_service_deployment_rollout_basic.tf.erb │ │ │ ├── game_service_realm_basic.tf.erb │ │ │ ├── gkehub_membership_basic.tf.erb │ │ │ ├── gkehub_membership_issuer.tf.erb │ │ │ ├── global_address_basic.tf.erb │ │ │ ├── global_address_private_services_connect.tf.erb │ │ │ ├── global_forwarding_rule_external_managed.tf.erb │ │ │ ├── global_forwarding_rule_http.tf.erb │ │ │ ├── global_forwarding_rule_hybrid.tf.erb │ │ │ ├── global_forwarding_rule_internal.tf.erb │ │ │ ├── global_network_endpoint.tf.erb │ │ │ ├── global_network_endpoint_group.tf.erb │ │ │ ├── global_network_endpoint_group_ip_address.tf.erb │ │ │ ├── ha_vpn_gateway_basic.tf.erb │ │ │ ├── ha_vpn_gateway_gcp_to_gcp.tf.erb │ │ │ ├── health_check_grpc.tf.erb │ │ │ ├── health_check_grpc_full.tf.erb │ │ │ ├── health_check_http.tf.erb │ │ │ ├── health_check_http2.tf.erb │ │ │ ├── health_check_http2_full.tf.erb │ │ │ ├── health_check_http_full.tf.erb │ │ │ ├── health_check_https.tf.erb │ │ │ ├── health_check_https_full.tf.erb │ │ │ ├── health_check_ssl.tf.erb │ │ │ ├── health_check_ssl_full.tf.erb │ │ │ ├── health_check_tcp.tf.erb │ │ │ ├── health_check_tcp_full.tf.erb │ │ │ ├── health_check_with_logging.tf.erb │ │ │ ├── healthcare_consent_store_basic.tf.erb │ │ │ ├── healthcare_consent_store_full.tf.erb │ │ │ ├── healthcare_consent_store_iam.tf.erb │ │ │ ├── healthcare_dataset_basic.tf.erb │ │ │ ├── healthcare_dicom_store_basic.tf.erb │ │ │ ├── healthcare_dicom_store_bq_stream.tf.erb │ │ │ ├── healthcare_fhir_store_basic.tf.erb │ │ │ ├── healthcare_fhir_store_streaming_config.tf.erb │ │ │ ├── healthcare_hl7_v2_store_basic.tf.erb │ │ │ ├── healthcare_hl7_v2_store_parser_config.tf.erb │ │ │ ├── healthcare_hl7_v2_store_unschematized.tf.erb │ │ │ ├── http_health_check_basic.tf.erb │ │ │ ├── https_health_check_basic.tf.erb │ │ │ ├── iam_deny_policy_basic.tf.erb │ │ │ ├── iam_workload_identity_pool_basic.tf.erb │ │ │ ├── iam_workload_identity_pool_full.tf.erb │ │ │ ├── iam_workload_identity_pool_provider_aws_basic.tf.erb │ │ │ ├── iam_workload_identity_pool_provider_aws_full.tf.erb │ │ │ ├── iam_workload_identity_pool_provider_oidc_basic.tf.erb │ │ │ ├── iam_workload_identity_pool_provider_oidc_full.tf.erb │ │ │ ├── iap_app_engine_service.tf.erb │ │ │ ├── iap_app_engine_version.tf.erb │ │ │ ├── iap_appengine.tf.erb │ │ │ ├── iap_brand.tf.erb │ │ │ ├── iap_client.tf.erb │ │ │ ├── iap_project.tf.erb │ │ │ ├── identity_platform_default_supported_idp_config_basic.tf.erb │ │ │ ├── identity_platform_inbound_saml_config_basic.tf.erb │ │ │ ├── identity_platform_oauth_idp_config_basic.tf.erb │ │ │ ├── identity_platform_tenant_basic.tf.erb │ │ │ ├── identity_platform_tenant_default_supported_idp_config_basic.tf.erb │ │ │ ├── identity_platform_tenant_inbound_saml_config_basic.tf.erb │ │ │ ├── identity_platform_tenant_oauth_idp_config_basic.tf.erb │ │ │ ├── image_basic.tf.erb │ │ │ ├── image_guest_os.tf.erb │ │ │ ├── instance_basic.tf.erb │ │ │ ├── instance_custom_hostname.tf.erb │ │ │ ├── instance_group_named_port_gke.tf.erb │ │ │ ├── instance_virtual_display_enabled.tf.erb │ │ │ ├── instance_with_ip.tf.erb │ │ │ ├── int_https_lb_https_redirect.tf.erb │ │ │ ├── interconnect_attachment_basic.tf.erb │ │ │ ├── internal_http_lb_with_mig_backend.tf.erb │ │ │ ├── internal_tcp_udp_lb_with_mig_backend.tf.erb │ │ │ ├── kms_crypto_key_asymmetric_sign.tf.erb │ │ │ ├── kms_crypto_key_basic.tf.erb │ │ │ ├── kms_key_ring_basic.tf.erb │ │ │ ├── kms_key_ring_import_job.tf.erb │ │ │ ├── kms_secret_ciphertext_basic.tf.erb │ │ │ ├── logging_metric_basic.tf.erb │ │ │ ├── logging_metric_counter_basic.tf.erb │ │ │ ├── logging_metric_counter_labels.tf.erb │ │ │ ├── machine_image_basic.tf.erb │ │ │ ├── managed_ssl_certificate_basic.tf.erb │ │ │ ├── managed_ssl_certificate_recreation.tf.erb │ │ │ ├── memcache_instance_basic.tf.erb │ │ │ ├── ml_model_basic.tf.erb │ │ │ ├── ml_model_full.tf.erb │ │ │ ├── monitoring_alert_policy_basic.tf.erb │ │ │ ├── monitoring_alert_policy_evaluation_missing_data.tf.erb │ │ │ ├── monitoring_group_basic.tf.erb │ │ │ ├── monitoring_group_subgroup.tf.erb │ │ │ ├── monitoring_metric_descriptor_alert.tf.erb │ │ │ ├── monitoring_metric_descriptor_basic.tf.erb │ │ │ ├── monitoring_service_custom.tf.erb │ │ │ ├── monitoring_slo_appengine.tf.erb │ │ │ ├── monitoring_slo_request_based.tf.erb │ │ │ ├── monitoring_slo_windows_based_good_bad_metric_filter.tf.erb │ │ │ ├── monitoring_slo_windows_based_metric_mean.tf.erb │ │ │ ├── monitoring_slo_windows_based_metric_sum.tf.erb │ │ │ ├── monitoring_slo_windows_based_ratio_threshold.tf.erb │ │ │ ├── network_basic.tf.erb │ │ │ ├── network_custom_mtu.tf.erb │ │ │ ├── network_endpoint.tf.erb │ │ │ ├── network_endpoint_group.tf.erb │ │ │ ├── network_endpoint_group_non_gcp.tf.erb │ │ │ ├── network_management_connectivity_test_addresses.tf.erb │ │ │ ├── network_management_connectivity_test_instances.tf.erb │ │ │ ├── network_peering_routes_config_basic.tf.erb │ │ │ ├── network_peering_routes_config_gke.tf.erb │ │ │ ├── network_services_edge_cache_keyset_basic.tf.erb │ │ │ ├── network_services_edge_cache_origin_advanced.tf.erb │ │ │ ├── network_services_edge_cache_origin_basic.tf.erb │ │ │ ├── network_services_edge_cache_service_advanced.tf.erb │ │ │ ├── network_services_edge_cache_service_basic.tf.erb │ │ │ ├── node_group_autoscaling_policy.tf.erb │ │ │ ├── node_group_basic.tf.erb │ │ │ ├── node_template_basic.tf.erb │ │ │ ├── node_template_server_binding.tf.erb │ │ │ ├── notebook_environment_basic.tf.erb │ │ │ ├── notebook_instance_basic.tf.erb │ │ │ ├── notebook_instance_basic_container.tf.erb │ │ │ ├── notebook_instance_basic_gpu.tf.erb │ │ │ ├── notebook_instance_full.tf.erb │ │ │ ├── notebook_runtime_basic.tf.erb │ │ │ ├── notebook_runtime_basic_container.tf.erb │ │ │ ├── notebook_runtime_basic_gpu.tf.erb │ │ │ ├── notebook_runtime_kernels.tf.erb │ │ │ ├── notebook_runtime_script.tf.erb │ │ │ ├── notification_channel_basic.tf.erb │ │ │ ├── notification_channel_sensitive.tf.erb │ │ │ ├── organization_access_approval_active_key_version.tf.erb │ │ │ ├── organization_access_approval_full.tf.erb │ │ │ ├── organization_security_policy_association_basic.tf.erb │ │ │ ├── organization_security_policy_basic.tf.erb │ │ │ ├── organization_security_policy_rule_basic.tf.erb │ │ │ ├── os_config_guest_policies_basic.tf.erb │ │ │ ├── os_config_guest_policies_packages.tf.erb │ │ │ ├── os_config_guest_policies_recipes.tf.erb │ │ │ ├── os_config_patch_deployment_basic.tf.erb │ │ │ ├── os_config_patch_deployment_daily.tf.erb │ │ │ ├── os_config_patch_deployment_daily_midnight.tf.erb │ │ │ ├── os_config_patch_deployment_full.tf.erb │ │ │ ├── os_config_patch_deployment_instance.tf.erb │ │ │ ├── os_login.tf.erb │ │ │ ├── os_login_ssh_key_basic.tf.erb │ │ │ ├── private_service_connect_google_apis.tf.erb │ │ │ ├── privateca_capool_all_fields.tf.erb │ │ │ ├── privateca_capool_basic.tf.erb │ │ │ ├── privateca_certificate_authority_basic.tf.erb │ │ │ ├── privateca_certificate_authority_byo_key.tf.erb │ │ │ ├── privateca_certificate_authority_subordinate.tf.erb │ │ │ ├── privateca_certificate_config.tf.erb │ │ │ ├── privateca_certificate_csr.tf.erb │ │ │ ├── privateca_certificate_no_authority.tf.erb │ │ │ ├── privateca_certificate_with_template.tf.erb │ │ │ ├── privateca_quickstart.tf.erb │ │ │ ├── privateca_template_basic.tf.erb │ │ │ ├── project_access_approval_active_key_version.tf.erb │ │ │ ├── project_access_approval_full.tf.erb │ │ │ ├── pubsub_lite_reservation_basic.tf.erb │ │ │ ├── pubsub_lite_subscription_basic.tf.erb │ │ │ ├── pubsub_lite_topic_basic.tf.erb │ │ │ ├── pubsub_schema_basic.tf.erb │ │ │ ├── pubsub_schema_protobuf.tf.erb │ │ │ ├── pubsub_subscription_dead_letter.tf.erb │ │ │ ├── pubsub_subscription_different_project.tf.erb │ │ │ ├── pubsub_subscription_pull.tf.erb │ │ │ ├── pubsub_subscription_push.tf.erb │ │ │ ├── pubsub_subscription_push_bq.tf.erb │ │ │ ├── pubsub_topic_basic.tf.erb │ │ │ ├── pubsub_topic_cmek.tf.erb │ │ │ ├── pubsub_topic_geo_restricted.tf.erb │ │ │ ├── pubsub_topic_schema_settings.tf.erb │ │ │ ├── queue_basic.tf.erb │ │ │ ├── redis_instance_basic.tf.erb │ │ │ ├── redis_instance_cmek.tf.erb │ │ │ ├── redis_instance_full.tf.erb │ │ │ ├── redis_instance_mrr.tf.erb │ │ │ ├── redis_instance_private_service.tf.erb │ │ │ ├── region_autoscaler_basic.tf.erb │ │ │ ├── region_backend_service_balancing_mode.tf.erb │ │ │ ├── region_backend_service_basic.tf.erb │ │ │ ├── region_backend_service_cache.tf.erb │ │ │ ├── region_backend_service_connection_tracking.tf.erb │ │ │ ├── region_backend_service_external.tf.erb │ │ │ ├── region_backend_service_ilb_ring_hash.tf.erb │ │ │ ├── region_backend_service_ilb_round_robin.tf.erb │ │ │ ├── region_consumer_quota_override.tf.erb │ │ │ ├── region_disk_basic.tf.erb │ │ │ ├── region_disk_resource_policy_attachment_basic.tf.erb │ │ │ ├── region_health_check_grpc.tf.erb │ │ │ ├── region_health_check_grpc_full.tf.erb │ │ │ ├── region_health_check_http.tf.erb │ │ │ ├── region_health_check_http2.tf.erb │ │ │ ├── region_health_check_http2_full.tf.erb │ │ │ ├── region_health_check_http_full.tf.erb │ │ │ ├── region_health_check_http_logs.tf.erb │ │ │ ├── region_health_check_https.tf.erb │ │ │ ├── region_health_check_https_full.tf.erb │ │ │ ├── region_health_check_ssl.tf.erb │ │ │ ├── region_health_check_ssl_full.tf.erb │ │ │ ├── region_health_check_tcp.tf.erb │ │ │ ├── region_health_check_tcp_full.tf.erb │ │ │ ├── region_network_endpoint_group_appengine.tf.erb │ │ │ ├── region_network_endpoint_group_cloudrun.tf.erb │ │ │ ├── region_network_endpoint_group_functions.tf.erb │ │ │ ├── region_network_endpoint_group_psc.tf.erb │ │ │ ├── region_network_endpoint_group_psc_service_attachment.tf.erb │ │ │ ├── region_ssl_certificate_basic.tf.erb │ │ │ ├── region_ssl_certificate_random_provider.tf.erb │ │ │ ├── region_ssl_certificate_target_https_proxies.tf.erb │ │ │ ├── region_target_http_proxy_basic.tf.erb │ │ │ ├── region_target_http_proxy_https_redirect.tf.erb │ │ │ ├── region_target_https_proxy_basic.tf.erb │ │ │ ├── region_url_map_basic.tf.erb │ │ │ ├── region_url_map_l7_ilb_path.tf.erb │ │ │ ├── region_url_map_l7_ilb_path_partial.tf.erb │ │ │ ├── region_url_map_l7_ilb_route.tf.erb │ │ │ ├── region_url_map_l7_ilb_route_partial.tf.erb │ │ │ ├── regional_external_http_load_balancer.tf.erb │ │ │ ├── reservation_basic.tf.erb │ │ │ ├── resource_certificate_manager_dns_authorization_test.go │ │ │ ├── resource_manager_lien.tf.erb │ │ │ ├── resource_network_services_edge_cache_keyset_test.go │ │ │ ├── resource_policy_basic.tf.erb │ │ │ ├── resource_policy_full.tf.erb │ │ │ ├── resource_policy_instance_schedule_policy.tf.erb │ │ │ ├── resource_policy_placement_policy.tf.erb │ │ │ ├── route_basic.tf.erb │ │ │ ├── route_ilb.tf.erb │ │ │ ├── route_ilb_vip.tf.erb │ │ │ ├── router_basic.tf.erb │ │ │ ├── router_nat_basic.tf.erb │ │ │ ├── router_nat_manual_ips.tf.erb │ │ │ ├── router_peer_basic.tf.erb │ │ │ ├── router_peer_bfd.tf.erb │ │ │ ├── router_peer_disabled.tf.erb │ │ │ ├── runtimeconfig_config_basic.tf.erb │ │ │ ├── scan_config_basic.tf.erb │ │ │ ├── scc_notification_config_basic.tf.erb │ │ │ ├── scc_source_basic.tf.erb │ │ │ ├── scheduler_job_app_engine.tf.erb │ │ │ ├── scheduler_job_http.tf.erb │ │ │ ├── scheduler_job_oauth.tf.erb │ │ │ ├── scheduler_job_oidc.tf.erb │ │ │ ├── scheduler_job_paused.tf.erb │ │ │ ├── scheduler_job_pubsub.tf.erb │ │ │ ├── secret_config_basic.tf.erb │ │ │ ├── secret_version_basic.tf.erb │ │ │ ├── service_attachment_basic.tf.erb │ │ │ ├── service_attachment_explicit_projects.tf.erb │ │ │ ├── service_directory_endpoint_basic.tf.erb │ │ │ ├── service_directory_endpoint_with_network.tf.erb │ │ │ ├── service_directory_namespace_basic.tf.erb │ │ │ ├── service_directory_service_basic.tf.erb │ │ │ ├── shared_reservation_basic.tf.erb │ │ │ ├── snapshot_basic.tf.erb │ │ │ ├── sourcerepo_repository_basic.tf.erb │ │ │ ├── sourcerepo_repository_full.tf.erb │ │ │ ├── spanner_database_basic.tf.erb │ │ │ ├── spanner_instance_basic.tf.erb │ │ │ ├── spanner_instance_multi_regional.tf.erb │ │ │ ├── spanner_instance_processing_units.tf.erb │ │ │ ├── spot_instance_basic.tf.erb │ │ │ ├── sql_database_basic.tf.erb │ │ │ ├── sql_database_instance_my_sql.tf.erb │ │ │ ├── sql_database_instance_postgres.tf.erb │ │ │ ├── sql_database_instance_sqlserver.tf.erb │ │ │ ├── sql_instance_cmek.tf.erb │ │ │ ├── sql_instance_ha.tf.erb │ │ │ ├── sql_instance_iam_condition.tf.erb │ │ │ ├── sql_instance_labels.tf.erb │ │ │ ├── sql_instance_pitr.tf.erb │ │ │ ├── sql_instance_ssl_cert.tf.erb │ │ │ ├── sql_mysql_instance_authorized_network.tf.erb │ │ │ ├── sql_mysql_instance_backup.tf.erb │ │ │ ├── sql_mysql_instance_backup_location.tf.erb │ │ │ ├── sql_mysql_instance_backup_retention.tf.erb │ │ │ ├── sql_mysql_instance_clone.tf.erb │ │ │ ├── sql_mysql_instance_flags.tf.erb │ │ │ ├── sql_mysql_instance_private_ip.tf.erb │ │ │ ├── sql_mysql_instance_public_ip.tf.erb │ │ │ ├── sql_mysql_instance_pvp.tf.erb │ │ │ ├── sql_mysql_instance_replica.tf.erb │ │ │ ├── sql_postgres_instance_authorized_network.tf.erb │ │ │ ├── sql_postgres_instance_backup.tf.erb │ │ │ ├── sql_postgres_instance_backup_location.tf.erb │ │ │ ├── sql_postgres_instance_backup_retention.tf.erb │ │ │ ├── sql_postgres_instance_clone.tf.erb │ │ │ ├── sql_postgres_instance_flags.tf.erb │ │ │ ├── sql_postgres_instance_private_ip.tf.erb │ │ │ ├── sql_postgres_instance_public_ip.tf.erb │ │ │ ├── sql_postgres_instance_pvp.tf.erb │ │ │ ├── sql_postgres_instance_replica.tf.erb │ │ │ ├── sql_source_representation_instance_basic.tf.erb │ │ │ ├── sql_sqlserver_instance_active_directory.tf.erb │ │ │ ├── sql_sqlserver_instance_authorized_network.tf.erb │ │ │ ├── sql_sqlserver_instance_backup.tf.erb │ │ │ ├── sql_sqlserver_instance_backup_location.tf.erb │ │ │ ├── sql_sqlserver_instance_backup_retention.tf.erb │ │ │ ├── sql_sqlserver_instance_clone.tf.erb │ │ │ ├── sql_sqlserver_instance_flags.tf.erb │ │ │ ├── sql_sqlserver_instance_private_ip.tf.erb │ │ │ ├── sql_sqlserver_instance_public_ip.tf.erb │ │ │ ├── sql_sqlserver_instance_replica.tf.erb │ │ │ ├── sql_sqlserver_vm_instance.tf.erb │ │ │ ├── ssl_certificate_basic.tf.erb │ │ │ ├── ssl_certificate_random_provider.tf.erb │ │ │ ├── ssl_certificate_target_https_proxies.tf.erb │ │ │ ├── ssl_policy_basic.tf.erb │ │ │ ├── stateful_igm.tf.erb │ │ │ ├── stateful_rigm.tf.erb │ │ │ ├── static │ │ │ │ └── motd │ │ │ ├── storage_bucket_access_control_public_bucket.tf.erb │ │ │ ├── storage_bucket_basic.tf.erb │ │ │ ├── storage_bucket_storage_class.tf.erb │ │ │ ├── storage_default_object_access_control_public.tf.erb │ │ │ ├── storage_hmac_key.tf.erb │ │ │ ├── storage_make_data_public.tf.erb │ │ │ ├── storage_new_bucket.tf.erb │ │ │ ├── storage_object_access_control_public_object.tf.erb │ │ │ ├── storage_object_lifecycle_setting.tf.erb │ │ │ ├── storage_pubsub_notifications.tf.erb │ │ │ ├── storage_static_website.tf.erb │ │ │ ├── subnetwork_basic.tf.erb │ │ │ ├── subnetwork_internal_ipv6.tf.erb │ │ │ ├── subnetwork_internal_l7lb.tf.erb │ │ │ ├── subnetwork_ipv6.tf.erb │ │ │ ├── subnetwork_logging_config.tf.erb │ │ │ ├── tag_binding_basic.tf.erb │ │ │ ├── tag_key_basic.tf.erb │ │ │ ├── tag_value_basic.tf.erb │ │ │ ├── target_grpc_proxy_basic.tf.erb │ │ │ ├── target_http_proxy_basic.tf.erb │ │ │ ├── target_http_proxy_https_redirect.tf.erb │ │ │ ├── target_https_proxy_basic.tf.erb │ │ │ ├── target_instance_basic.tf.erb │ │ │ ├── target_instance_custom_network.tf.erb │ │ │ ├── target_ssl_proxy_basic.tf.erb │ │ │ ├── target_tcp_proxy_basic.tf.erb │ │ │ ├── target_vpn_gateway_basic.tf.erb │ │ │ ├── tpu_node_basic.tf.erb │ │ │ ├── tpu_node_full.tf.erb │ │ │ ├── uptime_check_config_http.tf.erb │ │ │ ├── uptime_check_config_https.tf.erb │ │ │ ├── uptime_check_config_status_code.tf.erb │ │ │ ├── uptime_check_tcp.tf.erb │ │ │ ├── url_map_bucket_and_service.tf.erb │ │ │ ├── url_map_header_based_routing.tf.erb │ │ │ ├── url_map_parameter_based_routing.tf.erb │ │ │ ├── url_map_traffic_director_path.tf.erb │ │ │ ├── url_map_traffic_director_path_partial.tf.erb │ │ │ ├── url_map_traffic_director_route.tf.erb │ │ │ ├── url_map_traffic_director_route_partial.tf.erb │ │ │ ├── vertex_ai_dataset.tf.erb │ │ │ ├── vertex_ai_featurestore.tf.erb │ │ │ ├── vertex_ai_featurestore_entitytype.tf.erb │ │ │ ├── vertex_ai_metadata_store.tf.erb │ │ │ ├── vpc_access_connector.tf.erb │ │ │ ├── vpc_access_connector_shared_vpc.tf.erb │ │ │ ├── vpn_tunnel_basic.tf.erb │ │ │ ├── vpn_tunnel_beta.tf.erb │ │ │ └── workflow_basic.tf.erb │ │ ├── expand_property_method.erb │ │ ├── expand_resource_ref.erb │ │ ├── extra_schema_entry │ │ │ ├── api_config.erb │ │ │ ├── bigquery_dataset_access.go.erb │ │ │ ├── bigtable_app_profile.go.erb │ │ │ ├── cloudiot_device_registry.go.erb │ │ │ ├── firewall.erb │ │ │ ├── redis_instance.erb │ │ │ ├── route.erb │ │ │ ├── ssl_certificate.erb │ │ │ ├── subnetwork.erb │ │ │ └── workflow.erb │ │ ├── flatten_property_method.erb │ │ ├── iam │ │ │ ├── example_config_body │ │ │ │ ├── api_gateway_api_config.tf.erb │ │ │ │ ├── app_engine_service.tf.erb │ │ │ │ ├── app_engine_version.tf.erb │ │ │ │ ├── privateca_ca_pool.tf.erb │ │ │ │ ├── privateca_certificate_template.tf.erb │ │ │ │ └── service_management_consumer.tf.erb │ │ │ ├── iam_attributes.tf.erb │ │ │ ├── iam_context.go.erb │ │ │ ├── iap_web_appengine_diff_suppress.go.erb │ │ │ ├── sourcerepo_diff_suppress.go.erb │ │ │ └── storage_bucket_diff_suppress.go.erb │ │ ├── iam_policy.go.erb │ │ ├── nested_property_documentation.erb │ │ ├── nested_query.go.erb │ │ ├── operation.go.erb │ │ ├── operation_retry │ │ │ └── service_usage.go │ │ ├── post_create │ │ │ ├── accesspolicy.erb │ │ │ ├── bigquery_connection_id.go.erb │ │ │ ├── bigquery_dataset_access.go.erb │ │ │ ├── cloud_asset_feed.go.erb │ │ │ ├── cloud_scheduler.go.erb │ │ │ ├── cloudbuild_trigger_id.go.erb │ │ │ ├── compute_backend_bucket_security_policy.go.erb │ │ │ ├── compute_backend_service_security_policy.go.erb │ │ │ ├── compute_network_delete_default_route.erb │ │ │ ├── gcip_tenant.go.erb │ │ │ ├── global_network_endpoint_group.go.erb │ │ │ ├── group.erb │ │ │ ├── iap_client.go.erb │ │ │ ├── index.go.erb │ │ │ ├── interconnect_attachment.go.erb │ │ │ ├── kms_secret_ciphertext.go.erb │ │ │ ├── labels.erb │ │ │ ├── lien.erb │ │ │ ├── org_security_policy.go.erb │ │ │ ├── org_security_policy_association.go.erb │ │ │ ├── org_security_policy_rule.go.erb │ │ │ ├── privateca_certificate_authority.go.erb │ │ │ ├── secret_version.go.erb │ │ │ ├── set_computed_name.erb │ │ │ ├── sleep.go.erb │ │ │ ├── source_repo_repository_update.go.erb │ │ │ ├── spanner_database.go.erb │ │ │ ├── sshkeyfingerprint.go.erb │ │ │ └── storage_hmac_key.go.erb │ │ ├── post_create_failure │ │ │ └── delete_on_failure.go.erb │ │ ├── post_delete │ │ │ └── org_security_policy.go.erb │ │ ├── post_import │ │ │ ├── cloud_identity_group_membership.go.erb │ │ │ ├── lien_import.erb │ │ │ └── privateca_import.go.erb │ │ ├── post_update │ │ │ ├── cloud_scheduler.go.erb │ │ │ ├── compute_per_instance_config.go.erb │ │ │ ├── compute_region_per_instance_config.go.erb │ │ │ └── org_security_policy.go.erb │ │ ├── pre_create │ │ │ ├── access_approval_settings.go.erb │ │ │ ├── cloud_asset_feed.go.erb │ │ │ ├── compute_node_group_url_replace.go.erb │ │ │ ├── compute_snapshot_precreate_url.go.erb │ │ │ ├── dialogflow_set_location.go.erb │ │ │ ├── document_ai_processor_default_version_interpolate_location.go.erb │ │ │ ├── filestore_instance.go.erb │ │ │ ├── os_login_ssh_public_key.go.erb │ │ │ ├── privateca_certificate.go.erb │ │ │ └── privateca_certificate_authority.go.erb │ │ ├── pre_delete │ │ │ ├── compute_disk_resource_policies_attachment.go.erb │ │ │ ├── compute_global_network_endpoint.go.erb │ │ │ ├── compute_network_endpoint.go.erb │ │ │ ├── compute_per_instance_config.go.erb │ │ │ ├── compute_region_disk_resource_policies_attachment.go.erb │ │ │ ├── detach_disk.erb │ │ │ ├── detach_network.erb │ │ │ ├── interconnect_attachment.go.erb │ │ │ ├── managed_dns_zone.go.erb │ │ │ ├── modify_delete_url.erb │ │ │ ├── privateca_authority_disable.go.erb │ │ │ ├── resource_spanner_database.go │ │ │ ├── response_policy_detach_network.erb │ │ │ ├── restore_default_binaryauthorization_policy.erb │ │ │ ├── spanner_instance.go.erb │ │ │ ├── storage_hmac_key.go.erb │ │ │ └── vertex_ai_force_delete.go.erb │ │ ├── pre_update │ │ │ ├── bigtable_app_profile.go.erb │ │ │ ├── cloudbuild_trigger.go.erb │ │ │ ├── cloudiot_device_registry.go.erb │ │ │ ├── containeranalysis_note.erb │ │ │ ├── privateca_certificate_authority.go.erb │ │ │ └── shared_reservation_update.go.erb │ │ ├── property_documentation.erb │ │ ├── resource.erb │ │ ├── resource.html.markdown.erb │ │ ├── resource_definition │ │ │ ├── backend_service.go.erb │ │ │ ├── bigquery_data_transfer.go.erb │ │ │ ├── cloud_run_service.go.erb │ │ │ ├── cloudbuild_trigger.go.erb │ │ │ ├── deployment_manager_deployment.go.erb │ │ │ ├── disk.erb │ │ │ ├── firewall.erb │ │ │ ├── health_check.erb │ │ │ ├── monitoring_notification_channel.erb │ │ │ ├── privateca_certificate_authority.go.erb │ │ │ ├── redis_instance.erb │ │ │ ├── region_backend_service.go.erb │ │ │ ├── region_ssl_policy.erb │ │ │ ├── router.go.erb │ │ │ ├── router_nat.go.erb │ │ │ ├── scheduler_auth.erb │ │ │ ├── secret_version.go.erb │ │ │ ├── spanner_database.go.erb │ │ │ ├── ssl_policy.erb │ │ │ ├── subnetwork.erb │ │ │ └── tpu_node.erb │ │ ├── resource_iam.html.markdown.erb │ │ ├── schema_property.erb │ │ ├── schema_subresource.erb │ │ ├── self_link_query.erb │ │ ├── state_migrations │ │ │ ├── billing_budget.go.erb │ │ │ ├── filestore_instance.go.erb │ │ │ ├── kms_crypto_key.go.erb │ │ │ └── workflows_workflow.go.erb │ │ ├── sweeper_file.go.erb │ │ ├── unordered_list_customize_diff.erb │ │ ├── update_encoder │ │ │ ├── active_directory_domain_trust.go.erb │ │ │ ├── cloud_identity_group_membership.go.erb │ │ │ ├── cloud_scheduler.go.erb │ │ │ ├── compute_per_instance_config.go.erb │ │ │ ├── compute_service_attachment.go.erb │ │ │ ├── containeranalysis_occurrence.go.erb │ │ │ ├── kms_crypto_key.go.erb │ │ │ ├── managed_dns_zone.go.erb │ │ │ ├── pubsub_subscription.erb │ │ │ ├── pubsub_topic.erb │ │ │ ├── reservation.go.erb │ │ │ ├── source_repo_repository.erb │ │ │ ├── spanner_database.go.erb │ │ │ └── ssl_policy.erb │ │ └── update_mask.erb │ └── validator │ │ ├── examples │ │ └── base_configs │ │ │ ├── test_body.go.erb │ │ │ └── test_file.go.erb │ │ ├── mappers │ │ └── mappers.go.erb │ │ ├── resource_converter.go.erb │ │ ├── resource_converter_iam.go.erb │ │ └── resource_converters.go.erb ├── third_party │ ├── inspec │ │ ├── custom_functions │ │ │ ├── alert_policy.erb │ │ │ ├── bigquery_dataset_name.erb │ │ │ ├── bucket_name_from_params.erb │ │ │ ├── bucket_object.erb │ │ │ ├── compute_image_custom_constructor.erb │ │ │ ├── dns_managed_zone.erb │ │ │ ├── dns_managed_zones.erb │ │ │ ├── google_compute_address.erb │ │ │ ├── google_compute_firewall.erb │ │ │ ├── google_compute_instance.erb │ │ │ ├── google_compute_instance_group.erb │ │ │ ├── google_compute_network.erb │ │ │ ├── google_compute_project_info.erb │ │ │ ├── google_compute_region.erb │ │ │ ├── google_compute_region_instance_group_manager.erb │ │ │ ├── google_compute_subnetwork.erb │ │ │ ├── google_compute_target_pool.erb │ │ │ ├── google_compute_zone.erb │ │ │ ├── google_container_cluster.erb │ │ │ ├── google_project.erb │ │ │ ├── google_project_metrics.erb │ │ │ ├── google_sql_database_instance.erb │ │ │ ├── google_storage_bucket.erb │ │ │ ├── kms_crypto_key.erb │ │ │ ├── kms_key_ring.erb │ │ │ └── kms_key_ring_name.erb │ │ └── documentation │ │ │ ├── google_compute_address.md │ │ │ ├── google_compute_firewall.md │ │ │ ├── google_compute_firewalls.md │ │ │ ├── google_compute_forwarding_rule.md │ │ │ ├── google_compute_forwarding_rules.md │ │ │ ├── google_compute_image.md │ │ │ ├── google_compute_instance.md │ │ │ ├── google_compute_instance_group.md │ │ │ ├── google_compute_instance_groups.md │ │ │ ├── google_compute_instances.md │ │ │ ├── google_compute_network.md │ │ │ ├── google_compute_networks.md │ │ │ ├── google_compute_project_info.md │ │ │ ├── google_compute_region_instance_group_manager.md │ │ │ ├── google_compute_region_instance_group_managers.md │ │ │ ├── google_compute_subnetwork.md │ │ │ ├── google_compute_subnetworks.md │ │ │ ├── google_compute_vpn_tunnel.md │ │ │ ├── google_compute_vpn_tunnels.md │ │ │ ├── google_compute_zone.md │ │ │ ├── google_compute_zones.md │ │ │ ├── google_container_cluster.md │ │ │ ├── google_container_clusters.md │ │ │ ├── google_container_node_pool.md │ │ │ ├── google_container_node_pools.md │ │ │ ├── google_dns_managed_zone.md │ │ │ ├── google_dns_managed_zones.md │ │ │ ├── google_kms_crypto_key.md │ │ │ ├── google_kms_crypto_keys.md │ │ │ ├── google_kms_key_ring.md │ │ │ ├── google_kms_key_rings.md │ │ │ ├── google_logging_project_exclusion.md │ │ │ ├── google_logging_project_sink.md │ │ │ ├── google_logging_project_sinks.md │ │ │ ├── google_organization.md │ │ │ ├── google_organizations.md │ │ │ ├── google_project.md │ │ │ ├── google_project_alert_policies.md │ │ │ ├── google_project_alert_policy.md │ │ │ ├── google_project_iam_custom_role.md │ │ │ ├── google_project_metric.md │ │ │ ├── google_project_metrics.md │ │ │ ├── google_projects.md │ │ │ ├── google_service_account.md │ │ │ ├── google_service_account_key.md │ │ │ ├── google_service_account_keys.md │ │ │ ├── google_service_accounts.md │ │ │ ├── google_sql_database_instance.md │ │ │ ├── google_sql_database_instances.md │ │ │ ├── google_sql_users.md │ │ │ ├── google_storage_bucket.md │ │ │ ├── google_storage_bucket_acl.md │ │ │ ├── google_storage_bucket_object.md │ │ │ ├── google_storage_bucket_objects.md │ │ │ ├── google_storage_buckets.md │ │ │ ├── google_storage_default_object_acl.md │ │ │ └── google_storage_object_acl.md │ ├── terraform │ │ ├── .goreleaser.yml.erb │ │ ├── LICENSE │ │ ├── README.md │ │ ├── data_sources │ │ │ ├── data_google_game_services_game_server_deployment_rollout.go │ │ │ ├── data_source_access_approval_folder_service_account.go │ │ │ ├── data_source_access_approval_organization_service_account.go │ │ │ ├── data_source_access_approval_project_service_account.go │ │ │ ├── data_source_certificate_authority.go │ │ │ ├── data_source_cloud_identity_group_memberships.go.erb │ │ │ ├── data_source_cloud_identity_groups.go.erb │ │ │ ├── data_source_cloud_run_locations.go │ │ │ ├── data_source_cloud_run_service.go │ │ │ ├── data_source_compute_health_check.go │ │ │ ├── data_source_compute_lb_ip_ranges.go │ │ │ ├── data_source_compute_network_endpoint_group.go │ │ │ ├── data_source_compute_network_endpoint_group_test.go │ │ │ ├── data_source_container_registry_image.go │ │ │ ├── data_source_container_registry_repository.go │ │ │ ├── data_source_dataproc_metastore_service.go.erb │ │ │ ├── data_source_dns_keys.go │ │ │ ├── data_source_dns_managed_zone.go │ │ │ ├── data_source_dns_record_set.go │ │ │ ├── data_source_google_active_folder.go │ │ │ ├── data_source_google_app_engine_default_service_account.go │ │ │ ├── data_source_google_bigquery_default_service_account.go │ │ │ ├── data_source_google_billing_account.go │ │ │ ├── data_source_google_client_config.go │ │ │ ├── data_source_google_client_openid_userinfo.go │ │ │ ├── data_source_google_cloudfunctions_function.go │ │ │ ├── data_source_google_composer_environment.go │ │ │ ├── data_source_google_composer_image_versions.go │ │ │ ├── data_source_google_compute_address.go │ │ │ ├── data_source_google_compute_backend_bucket.go │ │ │ ├── data_source_google_compute_backend_service.go │ │ │ ├── data_source_google_compute_default_service_account.go │ │ │ ├── data_source_google_compute_disk.go │ │ │ ├── data_source_google_compute_forwarding_rule.go │ │ │ ├── data_source_google_compute_global_address.go │ │ │ ├── data_source_google_compute_ha_vpn_gateway.go │ │ │ ├── data_source_google_compute_image.go.erb │ │ │ ├── data_source_google_compute_instance.go.erb │ │ │ ├── data_source_google_compute_instance_group.go │ │ │ ├── data_source_google_compute_instance_serial_port.go │ │ │ ├── data_source_google_compute_instance_template.go.erb │ │ │ ├── data_source_google_compute_network.go │ │ │ ├── data_source_google_compute_node_types.go.erb │ │ │ ├── data_source_google_compute_region_instance_group.go.erb │ │ │ ├── data_source_google_compute_region_ssl_certificate.go │ │ │ ├── data_source_google_compute_regions.go.erb │ │ │ ├── data_source_google_compute_resource_policy.go.erb │ │ │ ├── data_source_google_compute_router.go │ │ │ ├── data_source_google_compute_router_status.go.erb │ │ │ ├── data_source_google_compute_ssl_certificate.go │ │ │ ├── data_source_google_compute_ssl_policy.go │ │ │ ├── data_source_google_compute_subnetwork.go.erb │ │ │ ├── data_source_google_compute_vpn_gateway.go.erb │ │ │ ├── data_source_google_compute_zones.go.erb │ │ │ ├── data_source_google_container_aws_versions.go │ │ │ ├── data_source_google_container_azure_versions.go │ │ │ ├── data_source_google_container_cluster.go │ │ │ ├── data_source_google_container_engine_versions.go │ │ │ ├── data_source_google_firebase_web_app.go.erb │ │ │ ├── data_source_google_firebase_web_app_config.go.erb │ │ │ ├── data_source_google_folder.go │ │ │ ├── data_source_google_folder_organization_policy.go │ │ │ ├── data_source_google_global_compute_forwarding_rule.go │ │ │ ├── data_source_google_iam_policy.go.erb │ │ │ ├── data_source_google_iam_role.go │ │ │ ├── data_source_google_iam_testable_permissions.go │ │ │ ├── data_source_google_kms_crypto_key.go │ │ │ ├── data_source_google_kms_crypto_key_version.go │ │ │ ├── data_source_google_kms_key_ring.go │ │ │ ├── data_source_google_kms_secret.go │ │ │ ├── data_source_google_kms_secret_asymmetric.go.erb │ │ │ ├── data_source_google_kms_secret_ciphertext.go │ │ │ ├── data_source_google_monitoring_uptime_check_ips.go │ │ │ ├── data_source_google_netblock_ip_ranges.go │ │ │ ├── data_source_google_organization.go │ │ │ ├── data_source_google_project.go │ │ │ ├── data_source_google_project_organization_policy.go │ │ │ ├── data_source_google_projects.go │ │ │ ├── data_source_google_service_account.go │ │ │ ├── data_source_google_service_account_access_token.go │ │ │ ├── data_source_google_service_account_id_token.go │ │ │ ├── data_source_google_service_account_jwt.go │ │ │ ├── data_source_google_service_account_key.go │ │ │ ├── data_source_google_service_networking_peered_dns_domain.go │ │ │ ├── data_source_google_sql_ca_certs.go │ │ │ ├── data_source_google_storage_bucket.go │ │ │ ├── data_source_google_storage_bucket_object.go │ │ │ ├── data_source_google_storage_project_service_account.go │ │ │ ├── data_source_google_storage_transfer_project_service_account.go │ │ │ ├── data_source_iam_beta_workload_identity_pool.go.erb │ │ │ ├── data_source_iam_beta_workload_identity_pool_provider.go.erb │ │ │ ├── data_source_iap_client.go │ │ │ ├── data_source_monitoring_istio_canonical_service.go │ │ │ ├── data_source_monitoring_notification_channel.go │ │ │ ├── data_source_monitoring_service.go │ │ │ ├── data_source_monitoring_service_app_engine.go │ │ │ ├── data_source_monitoring_service_cluster_istio.go │ │ │ ├── data_source_monitoring_service_mesh_istio.go │ │ │ ├── data_source_monitoring_service_test.go │ │ │ ├── data_source_pubsub_topic.go │ │ │ ├── data_source_redis_instance.go │ │ │ ├── data_source_runtimeconfig_config.go.erb │ │ │ ├── data_source_runtimeconfig_variable.go.erb │ │ │ ├── data_source_secret_manager_secret.go │ │ │ ├── data_source_secret_manager_secret_version.go │ │ │ ├── data_source_sourcerepo_repository.go │ │ │ ├── data_source_spanner_instance.go │ │ │ ├── data_source_sql_backup_run.go │ │ │ ├── data_source_sql_database_instance.go │ │ │ ├── data_source_storage_bucket_object_content.go │ │ │ ├── data_source_storage_object_signed_url.go │ │ │ ├── data_source_tags_tag_key.go │ │ │ ├── data_source_tags_tag_value.go │ │ │ └── data_source_tpu_tensorflow_versions.go │ │ ├── go.mod.erb │ │ ├── go.sum │ │ ├── main.go.erb │ │ ├── release-metadata.hcl.erb │ │ ├── resources │ │ │ ├── common_operation_test.go │ │ │ ├── data_source_google_folders.go │ │ │ ├── resource_apigee_environment_nodeconfig_test.go.erb │ │ │ ├── resource_app_engine_application.go │ │ │ ├── resource_bigquery_table.go │ │ │ ├── resource_bigtable_gc_policy.go │ │ │ ├── resource_bigtable_instance.go │ │ │ ├── resource_bigtable_instance_migrate.go │ │ │ ├── resource_bigtable_table.go │ │ │ ├── resource_cloudfunctions_function.go │ │ │ ├── resource_composer_environment.go.erb │ │ │ ├── resource_compute_attached_disk.go.erb │ │ │ ├── resource_compute_firewall_migrate.go │ │ │ ├── resource_compute_instance.go.erb │ │ │ ├── resource_compute_instance_from_machine_image.go.erb │ │ │ ├── resource_compute_instance_from_template.go.erb │ │ │ ├── resource_compute_instance_group.go.erb │ │ │ ├── resource_compute_instance_group_manager.go.erb │ │ │ ├── resource_compute_instance_group_migrate.go │ │ │ ├── resource_compute_instance_migrate.go.erb │ │ │ ├── resource_compute_instance_template.go.erb │ │ │ ├── resource_compute_instance_template_migrate.go │ │ │ ├── resource_compute_network_peering.go.erb │ │ │ ├── resource_compute_project_default_network_tier.go.erb │ │ │ ├── resource_compute_project_metadata.go.erb │ │ │ ├── resource_compute_project_metadata_item.go.erb │ │ │ ├── resource_compute_region_instance_group_manager.go.erb │ │ │ ├── resource_compute_router_interface.go.erb │ │ │ ├── resource_compute_security_policy.go.erb │ │ │ ├── resource_compute_shared_vpc_host_project.go │ │ │ ├── resource_compute_shared_vpc_service_project.go.erb │ │ │ ├── resource_compute_target_pool.go.erb │ │ │ ├── resource_container_cluster.go.erb │ │ │ ├── resource_container_cluster_migrate.go │ │ │ ├── resource_container_node_pool.go.erb │ │ │ ├── resource_container_node_pool_migrate.go │ │ │ ├── resource_container_registry.go │ │ │ ├── resource_dataflow_flex_template_job.go.erb │ │ │ ├── resource_dataflow_job.go.erb │ │ │ ├── resource_dataproc_cluster.go.erb │ │ │ ├── resource_dataproc_job.go.erb │ │ │ ├── resource_dns_record_set.go │ │ │ ├── resource_endpoints_service.go │ │ │ ├── resource_endpoints_service_migration.go │ │ │ ├── resource_google_billing_subaccount.go │ │ │ ├── resource_google_folder.go │ │ │ ├── resource_google_folder_organization_policy.go │ │ │ ├── resource_google_organization_iam_custom_role.go │ │ │ ├── resource_google_organization_policy.go │ │ │ ├── resource_google_project.go │ │ │ ├── resource_google_project_default_service_accounts.go │ │ │ ├── resource_google_project_iam_custom_role.go │ │ │ ├── resource_google_project_migrate.go │ │ │ ├── resource_google_project_organization_policy.go │ │ │ ├── resource_google_project_service.go │ │ │ ├── resource_google_service_account.go │ │ │ ├── resource_google_service_account_key.go │ │ │ ├── resource_google_service_networking_peered_dns_domain.go │ │ │ ├── resource_iam_audit_config.go │ │ │ ├── resource_iam_binding.go │ │ │ ├── resource_iam_member.go │ │ │ ├── resource_iam_policy.go │ │ │ ├── resource_logging_billing_account_bucket_config.go │ │ │ ├── resource_logging_billing_account_sink.go │ │ │ ├── resource_logging_bucket_config.go │ │ │ ├── resource_logging_exclusion.go │ │ │ ├── resource_logging_folder_bucket_config.go │ │ │ ├── resource_logging_folder_sink.go │ │ │ ├── resource_logging_organization_bucket_config.go │ │ │ ├── resource_logging_organization_sink.go │ │ │ ├── resource_logging_project_bucket_config.go │ │ │ ├── resource_logging_project_sink.go │ │ │ ├── resource_logging_sink.go │ │ │ ├── resource_monitoring_dashboard.go │ │ │ ├── resource_project_service_identity.go.erb │ │ │ ├── resource_runtimeconfig_config.go.erb │ │ │ ├── resource_runtimeconfig_variable.go.erb │ │ │ ├── resource_service_networking_connection.go │ │ │ ├── resource_sql_database_instance.go.erb │ │ │ ├── resource_sql_ssl_cert.go │ │ │ ├── resource_sql_ssl_cert_test.go │ │ │ ├── resource_sql_user.go │ │ │ ├── resource_sql_user_migrate.go │ │ │ ├── resource_storage_bucket.go.erb │ │ │ ├── resource_storage_bucket_acl.go │ │ │ ├── resource_storage_bucket_object.go │ │ │ ├── resource_storage_default_object_acl.go │ │ │ ├── resource_storage_notification.go │ │ │ ├── resource_storage_object_acl.go │ │ │ ├── resource_storage_transfer_job.go │ │ │ └── resource_usage_export_bucket.go.erb │ │ ├── scripts │ │ │ ├── affectedtests │ │ │ │ └── affectedtests.go │ │ │ ├── diff.go.erb │ │ │ ├── gofmtcheck.sh │ │ │ ├── gogetcookie.sh │ │ │ └── run_diff.sh.erb │ │ ├── terraform-registry-manifest.json.erb │ │ ├── tests │ │ │ ├── data_google_game_services_game_server_deployment_rollout_test.go │ │ │ ├── data_source_access_approval_folder_service_account_test.go │ │ │ ├── data_source_access_approval_organization_service_account_test.go │ │ │ ├── data_source_access_approval_project_service_account_test.go │ │ │ ├── data_source_certificate_authority_test.go │ │ │ ├── data_source_cloud_identity_group_memberships_test.go │ │ │ ├── data_source_cloud_identity_groups_test.go │ │ │ ├── data_source_cloud_run_locations_test.go │ │ │ ├── data_source_cloud_run_service_test.go │ │ │ ├── data_source_compute_health_check_test.go │ │ │ ├── data_source_compute_lb_ip_ranges_test.go │ │ │ ├── data_source_container_registry_test.go │ │ │ ├── data_source_dataproc_metastore_service_test.go.erb │ │ │ ├── data_source_dns_key_test.go │ │ │ ├── data_source_dns_managed_zone_test.go.erb │ │ │ ├── data_source_dns_record_set_test.go │ │ │ ├── data_source_google_active_folder_test.go │ │ │ ├── data_source_google_app_engine_default_service_account_test.go │ │ │ ├── data_source_google_bigquery_default_service_account_test.go │ │ │ ├── data_source_google_billing_account_test.go │ │ │ ├── data_source_google_client_config_test.go │ │ │ ├── data_source_google_client_openid_userinfo_test.go │ │ │ ├── data_source_google_cloudfunctions_function_test.go │ │ │ ├── data_source_google_composer_environment_test.go │ │ │ ├── data_source_google_composer_image_versions_test.go │ │ │ ├── data_source_google_compute_address_test.go │ │ │ ├── data_source_google_compute_backend_bucket_test.go │ │ │ ├── data_source_google_compute_backend_service_test.go │ │ │ ├── data_source_google_compute_default_service_account_test.go │ │ │ ├── data_source_google_compute_disk_test.go │ │ │ ├── data_source_google_compute_forwarding_rule_test.go │ │ │ ├── data_source_google_compute_global_address_test.go │ │ │ ├── data_source_google_compute_ha_vpn_gateway_test.go │ │ │ ├── data_source_google_compute_image_test.go │ │ │ ├── data_source_google_compute_instance_group_test.go.erb │ │ │ ├── data_source_google_compute_instance_serial_port_test.go │ │ │ ├── data_source_google_compute_instance_template_test.go │ │ │ ├── data_source_google_compute_instance_test.go │ │ │ ├── data_source_google_compute_network_test.go │ │ │ ├── data_source_google_compute_node_types_test.go │ │ │ ├── data_source_google_compute_region_instance_group_test.go.erb │ │ │ ├── data_source_google_compute_region_ssl_certificate_test.go │ │ │ ├── data_source_google_compute_regions_test.go │ │ │ ├── data_source_google_compute_resource_policy_test.go │ │ │ ├── data_source_google_compute_router_status_test.go │ │ │ ├── data_source_google_compute_router_test.go │ │ │ ├── data_source_google_compute_ssl_certificate_test.go │ │ │ ├── data_source_google_compute_ssl_policy_test.go │ │ │ ├── data_source_google_compute_subnetwork_test.go │ │ │ ├── data_source_google_compute_vpn_gateway_test.go │ │ │ ├── data_source_google_compute_zones_test.go │ │ │ ├── data_source_google_container_cluster_test.go │ │ │ ├── data_source_google_container_engine_versions_test.go │ │ │ ├── data_source_google_folder_organization_policy_test.go │ │ │ ├── data_source_google_folder_test.go │ │ │ ├── data_source_google_folders_test.go │ │ │ ├── data_source_google_global_compute_forwarding_rule_test.go │ │ │ ├── data_source_google_iam_role_test.go │ │ │ ├── data_source_google_iam_testable_permissions_test.go │ │ │ ├── data_source_google_kms_crypto_key_test.go │ │ │ ├── data_source_google_kms_crypto_key_version_test.go │ │ │ ├── data_source_google_kms_key_ring_test.go │ │ │ ├── data_source_google_kms_secret_asymmetric_test.go.erb │ │ │ ├── data_source_google_kms_secret_ciphertext_test.go │ │ │ ├── data_source_google_kms_secret_test.go │ │ │ ├── data_source_google_monitoring_uptime_check_ips_test.go │ │ │ ├── data_source_google_netblock_ip_ranges_test.go │ │ │ ├── data_source_google_organization_test.go │ │ │ ├── data_source_google_project_organization_policy_test.go │ │ │ ├── data_source_google_project_test.go │ │ │ ├── data_source_google_projects_test.go │ │ │ ├── data_source_google_service_account_access_token_test.go │ │ │ ├── data_source_google_service_account_id_token_test.go │ │ │ ├── data_source_google_service_account_jwt_test.go │ │ │ ├── data_source_google_service_account_key_test.go │ │ │ ├── data_source_google_service_account_test.go │ │ │ ├── data_source_google_service_networking_peered_dns_domain_test.go │ │ │ ├── data_source_google_sql_ca_certs_test.go │ │ │ ├── data_source_google_storage_bucket_test.go │ │ │ ├── data_source_google_storage_project_service_account_test.go │ │ │ ├── data_source_google_storage_transfer_project_service_account_test.go │ │ │ ├── data_source_iam_beta_workload_identity_pool_provider_test.go.erb │ │ │ ├── data_source_iam_beta_workload_identity_pool_test.go.erb │ │ │ ├── data_source_iap_client_test.go │ │ │ ├── data_source_monitoring_notification_channel_test.go │ │ │ ├── data_source_pubsub_topic_test.go │ │ │ ├── data_source_redis_instance_test.go │ │ │ ├── data_source_runtimeconfig_config_test.go.erb │ │ │ ├── data_source_runtimeconfig_variable_test.go.erb │ │ │ ├── data_source_secret_manager_secret_test.go │ │ │ ├── data_source_secret_manager_secret_version_test.go │ │ │ ├── data_source_sourcerepo_repository_test.go │ │ │ ├── data_source_spanner_instance_test.go │ │ │ ├── data_source_sql_backup_run_test.go │ │ │ ├── data_source_sql_database_instance_test.go │ │ │ ├── data_source_storage_bucket_object_content_test.go │ │ │ ├── data_source_storage_object_signed_url_test.go │ │ │ ├── data_source_tags_tag_key_test.go │ │ │ ├── data_source_tags_tag_value_test.go │ │ │ ├── data_source_tpu_tensorflow_versions_test.go │ │ │ ├── resource_access_approval_folder_settings_test.go │ │ │ ├── resource_access_approval_organization_settings_test.go │ │ │ ├── resource_access_approval_project_settings_test.go │ │ │ ├── resource_access_context_manager_access_level_condition_test.go │ │ │ ├── resource_access_context_manager_access_level_test.go.erb │ │ │ ├── resource_access_context_manager_access_levels_test.go │ │ │ ├── resource_access_context_manager_access_policy_iam_test.go │ │ │ ├── resource_access_context_manager_access_policy_test.go.erb │ │ │ ├── resource_access_context_manager_gcp_user_access_binding_test.go │ │ │ ├── resource_access_context_manager_service_perimeter_resource_test.go │ │ │ ├── resource_access_context_manager_service_perimeter_test.go.erb │ │ │ ├── resource_access_context_manager_services_perimeters_test.go │ │ │ ├── resource_active_directory_domain_trust_test.go │ │ │ ├── resource_active_directory_domain_update_test.go │ │ │ ├── resource_api_gateway_api_config_test.go.erb │ │ │ ├── resource_api_gateway_api_test.go.erb │ │ │ ├── resource_api_gateway_gateway_test.go.erb │ │ │ ├── resource_app_engine_app_version_sweeper_test.go │ │ │ ├── resource_app_engine_application_test.go │ │ │ ├── resource_app_engine_domain_mapping_test.go │ │ │ ├── resource_app_engine_flexible_app_version_test.go │ │ │ ├── resource_app_engine_service_network_settings_test.go │ │ │ ├── resource_app_engine_standard_app_version_test.go │ │ │ ├── resource_artifact_registry_repository_test.go.erb │ │ │ ├── resource_big_query_dataset_test.go │ │ │ ├── resource_big_query_routine_test.go │ │ │ ├── resource_bigquery_connection_test.go │ │ │ ├── resource_bigquery_data_transfer_config_test.go │ │ │ ├── resource_bigquery_dataset_access_test.go │ │ │ ├── resource_bigquery_dataset_iam_member_test.go │ │ │ ├── resource_bigquery_dataset_iam_test.go │ │ │ ├── resource_bigquery_job_test.go │ │ │ ├── resource_bigquery_reservation_sweeper_test.go │ │ │ ├── resource_bigquery_table_test.go │ │ │ ├── resource_bigtable_app_profile_test.go │ │ │ ├── resource_bigtable_gc_policy_test.go │ │ │ ├── resource_bigtable_instance_iam_test.go │ │ │ ├── resource_bigtable_instance_sweeper_test.go │ │ │ ├── resource_bigtable_instance_test.go │ │ │ ├── resource_bigtable_table_iam_test.go │ │ │ ├── resource_bigtable_table_test.go │ │ │ ├── resource_billing_budget_test.go │ │ │ ├── resource_binary_authorization_attestor_test.go.erb │ │ │ ├── resource_binary_authorization_policy_test.go.erb │ │ │ ├── resource_cloud_identity_group_membership_test.go.erb │ │ │ ├── resource_cloud_identity_group_sweeper_test.go.erb │ │ │ ├── resource_cloud_identity_group_test.go │ │ │ ├── resource_cloud_iot_device_update_test.go │ │ │ ├── resource_cloud_run_domain_mapping_test.go │ │ │ ├── resource_cloud_run_service_test.go.erb │ │ │ ├── resource_cloud_scheduler_job_test.go │ │ │ ├── resource_cloud_tasks_queue_test.go.erb │ │ │ ├── resource_cloudbuild_trigger_test.go │ │ │ ├── resource_cloudbuild_worker_pool_test.go.erb │ │ │ ├── resource_cloudfunction2_function_test.go │ │ │ ├── resource_cloudfunctions_function_test.go.erb │ │ │ ├── resource_cloudiot_device_registry_id_test.go │ │ │ ├── resource_cloudiot_device_registry_update_test.go │ │ │ ├── resource_composer_environment_test.go.erb │ │ │ ├── resource_compute_address_test.go │ │ │ ├── resource_compute_attached_disk_test.go │ │ │ ├── resource_compute_autoscaler_test.go.erb │ │ │ ├── resource_compute_backend_bucket_signed_url_key_test.go │ │ │ ├── resource_compute_backend_bucket_test.go │ │ │ ├── resource_compute_backend_service_signed_url_key_test.go │ │ │ ├── resource_compute_backend_service_test.go.erb │ │ │ ├── resource_compute_disk_resource_policy_attachment_test.go │ │ │ ├── resource_compute_disk_sweeper_test.go │ │ │ ├── resource_compute_disk_test.go.erb │ │ │ ├── resource_compute_firewall_migrate_test.go │ │ │ ├── resource_compute_firewall_policy_association_test.go │ │ │ ├── resource_compute_firewall_policy_rule_test.go │ │ │ ├── resource_compute_firewall_policy_test.go.erb │ │ │ ├── resource_compute_firewall_test.go.erb │ │ │ ├── resource_compute_forwarding_rule_test.go.erb │ │ │ ├── resource_compute_global_address_test.go.erb │ │ │ ├── resource_compute_global_forwarding_rule_test.go.erb │ │ │ ├── resource_compute_global_network_endpoint_test.go.erb │ │ │ ├── resource_compute_health_check_test.go.erb │ │ │ ├── resource_compute_http_health_check_test.go.erb │ │ │ ├── resource_compute_https_health_check_test.go │ │ │ ├── resource_compute_image_test.go.erb │ │ │ ├── resource_compute_instance_from_machine_image_test.go.erb │ │ │ ├── resource_compute_instance_from_template_test.go.erb │ │ │ ├── resource_compute_instance_group_manager_test.go.erb │ │ │ ├── resource_compute_instance_group_migrate_test.go │ │ │ ├── resource_compute_instance_group_test.go.erb │ │ │ ├── resource_compute_instance_iam_test.go │ │ │ ├── resource_compute_instance_migrate_test.go.erb │ │ │ ├── resource_compute_instance_template_migrate_test.go │ │ │ ├── resource_compute_instance_template_sweeper_test.go │ │ │ ├── resource_compute_instance_template_test.go.erb │ │ │ ├── resource_compute_instance_test.go.erb │ │ │ ├── resource_compute_network_endpoint_group_test.go.erb │ │ │ ├── resource_compute_network_endpoint_test.go.erb │ │ │ ├── resource_compute_network_peering_test.go │ │ │ ├── resource_compute_network_test.go.erb │ │ │ ├── resource_compute_node_group_test.go.erb │ │ │ ├── resource_compute_organization_security_policy_rule_test.go.erb │ │ │ ├── resource_compute_organization_security_policy_test.go.erb │ │ │ ├── resource_compute_per_instance_config_test.go │ │ │ ├── resource_compute_project_default_network_tier_test.go │ │ │ ├── resource_compute_project_metadata_item_test.go │ │ │ ├── resource_compute_project_metadata_test.go │ │ │ ├── resource_compute_region_autoscaler_test.go.erb │ │ │ ├── resource_compute_region_backend_service_test.go.erb │ │ │ ├── resource_compute_region_disk_test.go.erb │ │ │ ├── resource_compute_region_health_check_test.go.erb │ │ │ ├── resource_compute_region_instance_group_manager_test.go.erb │ │ │ ├── resource_compute_region_network_endpoint_group_test.go.erb │ │ │ ├── resource_compute_region_per_instance_config_test.go │ │ │ ├── resource_compute_region_ssl_policy_test.go.erb │ │ │ ├── resource_compute_region_target_http_proxy_test.go.erb │ │ │ ├── resource_compute_region_target_https_proxy_test.go.erb │ │ │ ├── resource_compute_region_url_map_test.go.erb │ │ │ ├── resource_compute_reservation_test.go │ │ │ ├── resource_compute_resource_policy_test.go │ │ │ ├── resource_compute_route_test.go │ │ │ ├── resource_compute_router_bgp_peer_test.go │ │ │ ├── resource_compute_router_interface_test.go │ │ │ ├── resource_compute_router_nat_test.go.erb │ │ │ ├── resource_compute_router_test.go │ │ │ ├── resource_compute_security_policy_test.go.erb │ │ │ ├── resource_compute_service_attachment_test.go │ │ │ ├── resource_compute_shared_reservation_update_test.go │ │ │ ├── resource_compute_shared_vpc_test.go │ │ │ ├── resource_compute_snapshot_test.go │ │ │ ├── resource_compute_ssl_certificate_test.go │ │ │ ├── resource_compute_ssl_policy_test.go.erb │ │ │ ├── resource_compute_subnetwork_iam_test.go │ │ │ ├── resource_compute_subnetwork_test.go.erb │ │ │ ├── resource_compute_target_grpc_proxy_test.go │ │ │ ├── resource_compute_target_http_proxy_test.go │ │ │ ├── resource_compute_target_https_proxy_test.go.erb │ │ │ ├── resource_compute_target_pool_test.go │ │ │ ├── resource_compute_target_ssl_proxy_test.go │ │ │ ├── resource_compute_target_tcp_proxy_test.go │ │ │ ├── resource_compute_url_map_test.go.erb │ │ │ ├── resource_compute_vpn_tunnel_test.go │ │ │ ├── resource_container_analysis_occurrence_test.go │ │ │ ├── resource_container_cluster_migrate_test.go │ │ │ ├── resource_container_cluster_test.go.erb │ │ │ ├── resource_container_node_pool_migrate_test.go │ │ │ ├── resource_container_node_pool_test.go.erb │ │ │ ├── resource_container_registry_test.go │ │ │ ├── resource_containeranalysis_note_test.go.erb │ │ │ ├── resource_data_catalog_entry_group_test.go │ │ │ ├── resource_data_catalog_entry_test.go │ │ │ ├── resource_data_catalog_tag_test.go │ │ │ ├── resource_data_fusion_instance_test.go.erb │ │ │ ├── resource_data_loss_prevention_deidentify_template_test.go │ │ │ ├── resource_data_loss_prevention_inspect_template_test.go │ │ │ ├── resource_data_loss_prevention_job_trigger_test.go │ │ │ ├── resource_data_loss_prevention_stored_info_type_test.go │ │ │ ├── resource_dataflow_flex_template_job_test.go.erb │ │ │ ├── resource_dataflow_job_test.go.erb │ │ │ ├── resource_dataproc_cluster_iam_test.go │ │ │ ├── resource_dataproc_cluster_test.go.erb │ │ │ ├── resource_dataproc_job_iam_test.go │ │ │ ├── resource_dataproc_job_test.go.erb │ │ │ ├── resource_dataproc_metastore_service_test.go.erb │ │ │ ├── resource_dataproc_workflow_template_test.go.erb │ │ │ ├── resource_deployment_manager_deployment_test.go │ │ │ ├── resource_dialogflow_agent_test.go.erb │ │ │ ├── resource_dialogflow_entity_type_test.go.erb │ │ │ ├── resource_dialogflow_fulfillment_test.go.erb │ │ │ ├── resource_dialogflow_intent_test.go.erb │ │ │ ├── resource_dialogflowcx_agent_test.go.erb │ │ │ ├── resource_dialogflowcx_entity_type_test.go │ │ │ ├── resource_dialogflowcx_environment_test.go │ │ │ ├── resource_dialogflowcx_flow_test.go │ │ │ ├── resource_dialogflowcx_intent_test.go │ │ │ ├── resource_dialogflowcx_page_test.go │ │ │ ├── resource_dialogflowcx_version_test.go.erb │ │ │ ├── resource_dns_managed_zone_test.go.erb │ │ │ ├── resource_dns_policy_test.go.erb │ │ │ ├── resource_dns_record_set_test.go.erb │ │ │ ├── resource_dns_response_policy_rule_test.go.erb │ │ │ ├── resource_dns_response_policy_test.go.erb │ │ │ ├── resource_endpoints_service_test.go │ │ │ ├── resource_essential_contacts_contact_test.go │ │ │ ├── resource_filestore_instance_test.go │ │ │ ├── resource_firebase_web_app_test.go.erb │ │ │ ├── resource_firestore_document_test.go │ │ │ ├── resource_firestore_index_test.go │ │ │ ├── resource_gke_hub_feature_membership_test.go.erb │ │ │ ├── resource_gke_hub_feature_test.go.erb │ │ │ ├── resource_google_billing_account_iam_test.go │ │ │ ├── resource_google_billing_subaccount_test.go │ │ │ ├── resource_google_folder_iam_audit_config_test.go │ │ │ ├── resource_google_folder_iam_binding_test.go │ │ │ ├── resource_google_folder_iam_member_test.go │ │ │ ├── resource_google_folder_iam_policy_test.go │ │ │ ├── resource_google_folder_organization_policy_test.go │ │ │ ├── resource_google_folder_test.go │ │ │ ├── resource_google_organization_iam_audit_config_test.go │ │ │ ├── resource_google_organization_iam_custom_role_test.go │ │ │ ├── resource_google_organization_iam_test.go │ │ │ ├── resource_google_organization_policy_test.go │ │ │ ├── resource_google_project_default_service_accounts_test.go │ │ │ ├── resource_google_project_iam_audit_config_test.go │ │ │ ├── resource_google_project_iam_binding_test.go.erb │ │ │ ├── resource_google_project_iam_custom_role_test.go │ │ │ ├── resource_google_project_iam_member_test.go.erb │ │ │ ├── resource_google_project_iam_policy_test.go.erb │ │ │ ├── resource_google_project_migrate_test.go │ │ │ ├── resource_google_project_organization_policy_test.go │ │ │ ├── resource_google_project_service_test.go │ │ │ ├── resource_google_project_test.go │ │ │ ├── resource_google_security_scanner_scan_config_test.go.erb │ │ │ ├── resource_google_service_account_iam_test.go.erb │ │ │ ├── resource_google_service_account_key_test.go │ │ │ ├── resource_google_service_account_test.go │ │ │ ├── resource_google_service_networking_peered_dns_domain_test.go │ │ │ ├── resource_google_service_usage_consumer_quota_override_test.go.erb │ │ │ ├── resource_healthcare_dataset_iam_test.go │ │ │ ├── resource_healthcare_dataset_test.go │ │ │ ├── resource_healthcare_dicom_store_iam_test.go │ │ │ ├── resource_healthcare_dicom_store_test.go │ │ │ ├── resource_healthcare_fhir_store_iam_test.go │ │ │ ├── resource_healthcare_fhir_store_test.go │ │ │ ├── resource_healthcare_hl7_v2_store_iam_test.go │ │ │ ├── resource_healthcare_hl7_v2_store_test.go.erb │ │ │ ├── resource_iam_beta_workload_identity_pool_id_test.go.erb │ │ │ ├── resource_iam_beta_workload_identity_pool_provider_id_test.go.erb │ │ │ ├── resource_iam_beta_workload_identity_pool_provider_test.go.erb │ │ │ ├── resource_iam_beta_workload_identity_pool_test.go.erb │ │ │ ├── resource_iam_deny_policy_test.go.erb │ │ │ ├── resource_iap_brand_test.go │ │ │ ├── resource_identity_platform_default_supported_idp_config_test.go │ │ │ ├── resource_identity_platform_inbound_saml_config_test.go │ │ │ ├── resource_identity_platform_oauth_idp_config_test.go │ │ │ ├── resource_identity_platform_tenant_default_supported_idp_config_test.go │ │ │ ├── resource_identity_platform_tenant_indound_saml_config_test.go │ │ │ ├── resource_identity_platform_tenant_oauth_idp_config_test.go │ │ │ ├── resource_identity_platform_tenant_test.go │ │ │ ├── resource_kms_crypto_key_iam_test.go.erb │ │ │ ├── resource_kms_crypto_key_test.go │ │ │ ├── resource_kms_key_ring_iam_test.go.erb │ │ │ ├── resource_kms_key_ring_import_job_test.go │ │ │ ├── resource_kms_key_ring_test.go │ │ │ ├── resource_kms_secret_ciphertext_test.go │ │ │ ├── resource_logging_billing_account_exclusion_test.go │ │ │ ├── resource_logging_billing_account_sink_test.go │ │ │ ├── resource_logging_bucket_config_test.go │ │ │ ├── resource_logging_folder_exclusion_test.go │ │ │ ├── resource_logging_folder_sink_test.go │ │ │ ├── resource_logging_metric_test.go │ │ │ ├── resource_logging_organization_exclusion_test.go │ │ │ ├── resource_logging_organization_sink_test.go │ │ │ ├── resource_logging_project_exclusion_test.go │ │ │ ├── resource_logging_project_sink_test.go │ │ │ ├── resource_memcache_instance_test.go │ │ │ ├── resource_monitoring_alert_policy_test.go │ │ │ ├── resource_monitoring_dashboard_test.go │ │ │ ├── resource_monitoring_group_test.go │ │ │ ├── resource_monitoring_metric_descriptor_test.go │ │ │ ├── resource_monitoring_notification_channel_test.go │ │ │ ├── resource_monitoring_slo_test.go │ │ │ ├── resource_monitoring_uptime_check_config_test.go │ │ │ ├── resource_network_management_connectivity_test_resource_test.go │ │ │ ├── resource_network_services_edge_cache_origin_test.go │ │ │ ├── resource_network_services_edge_cache_service_test.go │ │ │ ├── resource_notebooks_environment_test.go.erb │ │ │ ├── resource_notebooks_instance_container_test.go.erb │ │ │ ├── resource_notebooks_instance_gpu_test.go.erb │ │ │ ├── resource_notebooks_instance_test.go.erb │ │ │ ├── resource_notebooks_runtime_test.go.erb │ │ │ ├── resource_os_login_ssh_public_key_test.go │ │ │ ├── resource_privateca_ca_pool_iam_test.go │ │ │ ├── resource_privateca_ca_pool_test.go │ │ │ ├── resource_privateca_certificate_authority_sweeper_test.go │ │ │ ├── resource_privateca_certificate_authority_test.go │ │ │ ├── resource_privateca_certificate_test.go │ │ │ ├── resource_project_service_identity_test.go.erb │ │ │ ├── resource_pubsub_lite_subscription_test.go │ │ │ ├── resource_pubsub_lite_topic_test.go │ │ │ ├── resource_pubsub_subscription_iam_test.go │ │ │ ├── resource_pubsub_subscription_test.go │ │ │ ├── resource_pubsub_topic_iam_test.go │ │ │ ├── resource_pubsub_topic_test.go │ │ │ ├── resource_redis_instance_test.go │ │ │ ├── resource_resourcemanager_lien_test.go │ │ │ ├── resource_runtimeconfig_config_test.go.erb │ │ │ ├── resource_runtimeconfig_variable_test.go.erb │ │ │ ├── resource_scc_notification_config_test.go │ │ │ ├── resource_secret_manager_secret_test.go.erb │ │ │ ├── resource_secret_manager_secret_version_test.go.erb │ │ │ ├── resource_security_center_source_test.go │ │ │ ├── resource_service_directory_endpoint_test.go.erb │ │ │ ├── resource_service_directory_namespace_test.go.erb │ │ │ ├── resource_service_directory_service_test.go.erb │ │ │ ├── resource_service_networking_connection_test.go │ │ │ ├── resource_sourcerepo_repository_test.go │ │ │ ├── resource_spanner_database_iam_test.go │ │ │ ├── resource_spanner_database_test.go.erb │ │ │ ├── resource_spanner_instance_iam_test.go │ │ │ ├── resource_spanner_instance_sweeper_test.go │ │ │ ├── resource_spanner_instance_test.go │ │ │ ├── resource_sql_database_instance_test.go.erb │ │ │ ├── resource_sql_database_test.go │ │ │ ├── resource_sql_user_migrate_test.go │ │ │ ├── resource_sql_user_test.go │ │ │ ├── resource_storage_bucket_access_control_test.go │ │ │ ├── resource_storage_bucket_acl_test.go │ │ │ ├── resource_storage_bucket_iam_test.go │ │ │ ├── resource_storage_bucket_object_test.go │ │ │ ├── resource_storage_bucket_sweeper_test.go │ │ │ ├── resource_storage_bucket_test.go.erb │ │ │ ├── resource_storage_default_object_access_control_test.go │ │ │ ├── resource_storage_default_object_acl_test.go │ │ │ ├── resource_storage_hmac_key_test.go │ │ │ ├── resource_storage_notification_test.go │ │ │ ├── resource_storage_object_access_control_test.go │ │ │ ├── resource_storage_object_acl_test.go │ │ │ ├── resource_storage_transfer_job_test.go │ │ │ ├── resource_tags_test.go │ │ │ ├── resource_tpu_node_test.go │ │ │ ├── resource_usage_export_bucket_test.go │ │ │ ├── resource_vertex_ai_metadata_store_test.go.erb │ │ │ ├── resource_vpc_access_connector_test.go.erb │ │ │ └── resource_workflows_workflow_test.go │ │ ├── utils │ │ │ ├── appengine_operation.go │ │ │ ├── batcher.go │ │ │ ├── batcher_test.go │ │ │ ├── bigtable_client_factory.go │ │ │ ├── bootstrap_utils_test.go │ │ │ ├── cloudfunctions_operation.go │ │ │ ├── cloudrun_polling.go │ │ │ ├── common_diff_suppress.go.erb │ │ │ ├── common_diff_suppress_test.go.erb │ │ │ ├── common_operation.go │ │ │ ├── common_polling.go │ │ │ ├── composer_operation.go.erb │ │ │ ├── compute_backend_service_helpers.go.erb │ │ │ ├── compute_instance_helpers.go.erb │ │ │ ├── compute_instance_network_interface_helpers.go.erb │ │ │ ├── compute_operation.go.erb │ │ │ ├── compute_operation_test.go.erb │ │ │ ├── config.go.erb │ │ │ ├── config_test.go │ │ │ ├── container_operation.go.erb │ │ │ ├── convert.go │ │ │ ├── convert_test.go │ │ │ ├── dataproc_cluster_operation.go.erb │ │ │ ├── dataproc_job_operation.go.erb │ │ │ ├── dataproc_metastore_service_diff_supress.go.erb │ │ │ ├── datasource_helpers.go │ │ │ ├── deployment_manager_operation.go.erb │ │ │ ├── disk_type.go │ │ │ ├── dns_change.go │ │ │ ├── error_retry_predicates.go │ │ │ ├── error_retry_predicates_test.go │ │ │ ├── field_helpers.go │ │ │ ├── field_helpers_test.go │ │ │ ├── gcp_sweeper_test.go │ │ │ ├── hashcode.go │ │ │ ├── header_transport.go │ │ │ ├── healthcare_utils.go │ │ │ ├── iam.go.erb │ │ │ ├── iam_batching.go │ │ │ ├── iam_bigquery_dataset.go │ │ │ ├── iam_bigtable_instance.go │ │ │ ├── iam_bigtable_table.go │ │ │ ├── iam_billing_account.go │ │ │ ├── iam_dataproc_cluster.go.erb │ │ │ ├── iam_dataproc_job.go.erb │ │ │ ├── iam_folder.go │ │ │ ├── iam_healthcare_dataset.go │ │ │ ├── iam_healthcare_dicom_store.go │ │ │ ├── iam_healthcare_fhir_store.go │ │ │ ├── iam_healthcare_hl7_v2_store.go │ │ │ ├── iam_kms_crypto_key.go.erb │ │ │ ├── iam_kms_key_ring.go.erb │ │ │ ├── iam_organization.go │ │ │ ├── iam_project.go │ │ │ ├── iam_pubsub_subscription.go │ │ │ ├── iam_service_account.go.erb │ │ │ ├── iam_spanner_database.go │ │ │ ├── iam_spanner_instance.go │ │ │ ├── iam_test.go.erb │ │ │ ├── image.go │ │ │ ├── import.go │ │ │ ├── import_test.go │ │ │ ├── kms_utils.go │ │ │ ├── logging_exclusion_billing_account.go │ │ │ ├── logging_exclusion_folder.go │ │ │ ├── logging_exclusion_organization.go │ │ │ ├── logging_exclusion_project.go │ │ │ ├── logging_utils.go │ │ │ ├── logging_utils_test.go │ │ │ ├── metadata.go.erb │ │ │ ├── mtls_util.go │ │ │ ├── mtls_util_test.go │ │ │ ├── mutexkv.go │ │ │ ├── node_config.go.erb │ │ │ ├── path_or_contents.go │ │ │ ├── privateca_ca_utils.go │ │ │ ├── privateca_utils.go │ │ │ ├── provider.go.erb │ │ │ ├── provider_handwritten_endpoint.go.erb │ │ │ ├── provider_test.go.erb │ │ │ ├── pubsub_utils.go │ │ │ ├── regional_utils.go │ │ │ ├── retry_transport.go │ │ │ ├── retry_transport_test.go │ │ │ ├── retry_utils.go │ │ │ ├── security_policy_association_utils.go.erb │ │ │ ├── self_link_helpers.go │ │ │ ├── self_link_helpers_test.go │ │ │ ├── service_account_waiter.go │ │ │ ├── service_networking_operation.go │ │ │ ├── service_scope.go │ │ │ ├── serviceman_operation.go │ │ │ ├── serviceusage_batching.go │ │ │ ├── serviceusage_operation.go │ │ │ ├── source_repo_utils.go │ │ │ ├── sql_utils.go │ │ │ ├── sqladmin_operation.go │ │ │ ├── state_util.go │ │ │ ├── stateful_mig_polling.go │ │ │ ├── test-fixtures │ │ │ │ ├── apigateway │ │ │ │ │ ├── api_descriptor.pb │ │ │ │ │ ├── bookstore.proto │ │ │ │ │ └── openapi.yaml │ │ │ │ ├── appengine │ │ │ │ │ ├── hello-world-flask │ │ │ │ │ │ ├── app.yaml │ │ │ │ │ │ ├── main.py │ │ │ │ │ │ └── requirements.txt │ │ │ │ │ └── hello-world.zip │ │ │ │ ├── binauthz │ │ │ │ │ └── generated_payload.json.tmpl │ │ │ │ ├── cloudfunctions │ │ │ │ │ ├── bucket_trigger.js │ │ │ │ │ ├── firestore_trigger.js │ │ │ │ │ ├── http_trigger.js │ │ │ │ │ ├── http_trigger_update.js │ │ │ │ │ ├── pubsub_trigger.js │ │ │ │ │ ├── secret_environment_variables.js │ │ │ │ │ └── secret_volumes_mount.js │ │ │ │ ├── cloudfunctions2 │ │ │ │ │ ├── function-source-eventarc-gcs.zip │ │ │ │ │ ├── function-source-pubsub.zip │ │ │ │ │ ├── function-source.zip │ │ │ │ │ └── index-js │ │ │ │ ├── deploymentmanager │ │ │ │ │ └── service_account.yml.tmpl │ │ │ │ ├── dlp │ │ │ │ │ └── words.txt │ │ │ │ ├── fake_account.json │ │ │ │ ├── fake_client.json │ │ │ │ ├── header-logo.png │ │ │ │ ├── rsa_cert.pem │ │ │ │ ├── rsa_csr.pem │ │ │ │ ├── rsa_private_4096.pem │ │ │ │ ├── rsa_public.pem │ │ │ │ ├── serviceaccount │ │ │ │ │ └── public_key.pem │ │ │ │ ├── ssh_rsa.pub │ │ │ │ ├── ssl_cert │ │ │ │ │ ├── test.crt │ │ │ │ │ ├── test.csr │ │ │ │ │ └── test.key │ │ │ │ ├── test_api_descriptor.pb │ │ │ │ └── workflow.yaml │ │ │ ├── test_utils.go │ │ │ ├── transport.go.erb │ │ │ ├── transport_test.go │ │ │ ├── utils.go │ │ │ ├── utils_test.go │ │ │ ├── validation.go │ │ │ ├── validation_test.go │ │ │ └── vertex_ai_operation.go.erb │ │ ├── version │ │ │ └── version.go │ │ └── website │ │ │ └── docs │ │ │ ├── d │ │ │ ├── access_approval_folder_service_account.html.markdown │ │ │ ├── access_approval_organization_service_account.html.markdown │ │ │ ├── access_approval_project_service_account.html.markdown │ │ │ ├── active_folder.html.markdown │ │ │ ├── app_engine_default_service_account.html.markdown │ │ │ ├── bigquery_default_service_account.html.markdown │ │ │ ├── billing_account.html.markdown │ │ │ ├── client_config.html.markdown │ │ │ ├── client_openid_userinfo.html.markdown │ │ │ ├── cloud_identity_group_membership.html.markdown │ │ │ ├── cloud_identity_groups.html.markdown │ │ │ ├── cloud_run_locations.html.markdown │ │ │ ├── cloud_run_service.html.markdown │ │ │ ├── cloudfunctions_function.html.markdown │ │ │ ├── composer_environment.html.markdown │ │ │ ├── composer_image_versions.html.markdown │ │ │ ├── compute_address.html.markdown │ │ │ ├── compute_backend_bucket.html.markdown │ │ │ ├── compute_backend_service.html.markdown │ │ │ ├── compute_default_service_account.html.markdown │ │ │ ├── compute_disk.html.markdown │ │ │ ├── compute_forwarding_rule.html.markdown │ │ │ ├── compute_global_address.html.markdown │ │ │ ├── compute_global_forwarding_rule.html.markdown │ │ │ ├── compute_ha_vpn_gateway.html.markdown │ │ │ ├── compute_health_check.html.markdown │ │ │ ├── compute_image.html.markdown │ │ │ ├── compute_instance.html.markdown │ │ │ ├── compute_instance_group.html.markdown │ │ │ ├── compute_instance_serial_port.html.markdown │ │ │ ├── compute_instance_template.html.markdown │ │ │ ├── compute_lb_ip_ranges.html.markdown │ │ │ ├── compute_network.html.markdown │ │ │ ├── compute_network_endpoint_group.html.markdown │ │ │ ├── compute_node_types.html.markdown │ │ │ ├── compute_region_instance_group.html.markdown │ │ │ ├── compute_region_ssl_certificate.html.markdown │ │ │ ├── compute_regions.html.markdown │ │ │ ├── compute_resource_policy.html.markdown │ │ │ ├── compute_router.html.markdown │ │ │ ├── compute_router_status.html.markdown │ │ │ ├── compute_ssl_certificate.html.markdown │ │ │ ├── compute_ssl_policy.html.markdown │ │ │ ├── compute_subnetwork.html.markdown │ │ │ ├── compute_vpn_gateway.html.markdown │ │ │ ├── compute_zones.html.markdown │ │ │ ├── container_aws_versions.html.markdown │ │ │ ├── container_azure_versions.html.markdown │ │ │ ├── container_cluster.html.markdown │ │ │ ├── container_engine_versions.html.markdown │ │ │ ├── container_registry_image.html.markdown │ │ │ ├── container_registry_repository.html.markdown │ │ │ ├── data_source_dataproc_metastore_service.markdown │ │ │ ├── data_source_sourcerepo_repository.html.markdown │ │ │ ├── dns_keys.html.markdown │ │ │ ├── dns_managed_zone.html.markdown │ │ │ ├── dns_record_set.markdown │ │ │ ├── firebase_web_app.html.markdown │ │ │ ├── firebase_web_app_config.html.markdown │ │ │ ├── folder.html.markdown │ │ │ ├── folder_organization_policy.html.markdown │ │ │ ├── folders.html.markdown │ │ │ ├── game_services_game_server_deployment_rollout.html.markdown │ │ │ ├── iam_policy.html.markdown │ │ │ ├── iam_role.html.markdown │ │ │ ├── iam_testable_permissions.html.markdown │ │ │ ├── iam_workload_identity_pool.html.markdown │ │ │ ├── iam_workload_identity_pool_provider.html.markdown │ │ │ ├── iap_client.html.markdown │ │ │ ├── kms_crypto_key.html.markdown │ │ │ ├── kms_crypto_key_version.html.markdown │ │ │ ├── kms_key_ring.html.markdown │ │ │ ├── kms_secret.html.markdown │ │ │ ├── kms_secret_asymmetric.html.markdown │ │ │ ├── kms_secret_ciphertext.html.markdown │ │ │ ├── monitoring_app_engine_service.html.markdown │ │ │ ├── monitoring_cluster_istio_service.html.markdown │ │ │ ├── monitoring_istio_canonical_service.html.markdown │ │ │ ├── monitoring_mesh_istio_service.html.markdown │ │ │ ├── monitoring_notification_channel.html.markdown │ │ │ ├── monitoring_uptime_check_ips.html.markdown │ │ │ ├── netblock_ip_ranges.html.markdown │ │ │ ├── organization.html.markdown │ │ │ ├── privateca_certificate_authority.html.markdown │ │ │ ├── project.html.markdown │ │ │ ├── project_organization_policy.html.markdown │ │ │ ├── projects.html.markdown │ │ │ ├── pubsub_topic.html.markdown │ │ │ ├── redis_instance.html.markdown │ │ │ ├── runtimeconfig_config.html.markdown │ │ │ ├── runtimeconfig_variable.html.markdown │ │ │ ├── secret_manager_secret.html.markdown │ │ │ ├── secret_manager_secret_version.html.markdown │ │ │ ├── service_account.html.markdown │ │ │ ├── service_account_access_token.html.markdown │ │ │ ├── service_account_id_token.html.markdown │ │ │ ├── service_account_jwt.html.markdown │ │ │ ├── service_account_key.html.markdown │ │ │ ├── signed_url.html.markdown │ │ │ ├── spanner_instance.html.markdown │ │ │ ├── sql_backup_run.html.markdown │ │ │ ├── sql_ca_certs.html.markdown │ │ │ ├── sql_database_instance.html.markdown │ │ │ ├── storage_bucket.html.markdown │ │ │ ├── storage_bucket_object.html.markdown │ │ │ ├── storage_bucket_object_content.html.markdown │ │ │ ├── storage_project_service_account.html.markdown │ │ │ ├── storage_transfer_project_service_account.html.markdown │ │ │ ├── tags_tag_key.html.markdown │ │ │ ├── tags_tag_value.html.markdown │ │ │ └── tpu_tensorflow_versions.html.markdown │ │ │ ├── guides │ │ │ ├── getting_started.html.markdown │ │ │ ├── iam_deleted_members.html.markdown │ │ │ ├── provider_reference.html.markdown │ │ │ ├── provider_versions.html.markdown │ │ │ ├── using_gke_with_terraform.html.markdown │ │ │ ├── version_2_upgrade.html.markdown │ │ │ ├── version_3_upgrade.html.markdown │ │ │ └── version_4_upgrade.html.markdown │ │ │ ├── index.html.markdown │ │ │ └── r │ │ │ ├── app_engine_application.html.markdown │ │ │ ├── bigquery_dataset_iam.html.markdown │ │ │ ├── bigquery_table.html.markdown │ │ │ ├── bigtable_gc_policy.html.markdown │ │ │ ├── bigtable_instance.html.markdown │ │ │ ├── bigtable_instance_iam.html.markdown │ │ │ ├── bigtable_table.html.markdown │ │ │ ├── bigtable_table_iam.html.markdown │ │ │ ├── billing_account_iam.html.markdown │ │ │ ├── cloudbuild_worker_pool.html.markdown │ │ │ ├── cloudfunctions_function.html.markdown │ │ │ ├── composer_environment.html.markdown │ │ │ ├── compute_attached_disk.html.markdown │ │ │ ├── compute_firewall_policy.html.markdown │ │ │ ├── compute_firewall_policy_association.html.markdown │ │ │ ├── compute_firewall_policy_rule.html.markdown │ │ │ ├── compute_instance.html.markdown │ │ │ ├── compute_instance_from_machine_image.html.markdown │ │ │ ├── compute_instance_from_template.html.markdown │ │ │ ├── compute_instance_group.html.markdown │ │ │ ├── compute_instance_group_manager.html.markdown │ │ │ ├── compute_instance_template.html.markdown │ │ │ ├── compute_network_peering.html.markdown │ │ │ ├── compute_project_default_network_tier.html.markdown │ │ │ ├── compute_project_metadata.html.markdown │ │ │ ├── compute_project_metadata_item.html.markdown │ │ │ ├── compute_region_instance_group_manager.html.markdown │ │ │ ├── compute_router_interface.html.markdown │ │ │ ├── compute_security_policy.html.markdown │ │ │ ├── compute_shared_vpc_host_project.html.markdown │ │ │ ├── compute_shared_vpc_service_project.html.markdown │ │ │ ├── compute_target_pool.html.markdown │ │ │ ├── container_cluster.html.markdown │ │ │ ├── container_node_pool.html.markdown │ │ │ ├── container_registry.html.markdown │ │ │ ├── dataflow_flex_template_job.html.markdown │ │ │ ├── dataflow_job.html.markdown │ │ │ ├── dataproc_cluster.html.markdown │ │ │ ├── dataproc_cluster_iam.html.markdown │ │ │ ├── dataproc_job.html.markdown │ │ │ ├── dataproc_job_iam.html.markdown │ │ │ ├── dataproc_workflow_template.html.markdown │ │ │ ├── dns_record_set.html.markdown │ │ │ ├── endpoints_service.html.markdown │ │ │ ├── gke_hub_feature.html.markdown │ │ │ ├── gke_hub_feature_membership.html.markdown │ │ │ ├── google_billing_subaccount.html.markdown │ │ │ ├── google_folder.html.markdown │ │ │ ├── google_folder_iam.html.markdown │ │ │ ├── google_folder_organization_policy.html.markdown │ │ │ ├── google_kms_crypto_key_iam.html.markdown │ │ │ ├── google_kms_key_ring_iam.html.markdown │ │ │ ├── google_organization_iam.html.markdown │ │ │ ├── google_organization_iam_custom_role.html.markdown │ │ │ ├── google_organization_policy.html.markdown │ │ │ ├── google_project.html.markdown │ │ │ ├── google_project_default_service_accounts.html.markdown │ │ │ ├── google_project_iam.html.markdown │ │ │ ├── google_project_iam_custom_role.html.markdown │ │ │ ├── google_project_organization_policy.html.markdown │ │ │ ├── google_project_service.html.markdown │ │ │ ├── google_service_account.html.markdown │ │ │ ├── google_service_account_iam.html.markdown │ │ │ ├── google_service_account_key.html.markdown │ │ │ ├── google_service_networking_peered_dns_domain.html.markdown │ │ │ ├── healthcare_dataset_iam.html.markdown │ │ │ ├── healthcare_dicom_store_iam.html.markdown │ │ │ ├── healthcare_fhir_store_iam.html.markdown │ │ │ ├── healthcare_hl7_v2_store_iam.html.markdown │ │ │ ├── logging_billing_account_bucket_config.html.markdown │ │ │ ├── logging_billing_account_exclusion.html.markdown │ │ │ ├── logging_billing_account_sink.html.markdown │ │ │ ├── logging_folder_bucket_config.html.markdown │ │ │ ├── logging_folder_exclusion.html.markdown │ │ │ ├── logging_folder_sink.html.markdown │ │ │ ├── logging_organization_bucket_config.html.markdown │ │ │ ├── logging_organization_exclusion.html.markdown │ │ │ ├── logging_organization_sink.html.markdown │ │ │ ├── logging_project_bucket_config.html.markdown │ │ │ ├── logging_project_exclusion.html.markdown │ │ │ ├── logging_project_sink.html.markdown │ │ │ ├── monitoring_dashboard.html.markdown │ │ │ ├── project_service_identity.html.markdown │ │ │ ├── pubsub_subscription_iam.html.markdown │ │ │ ├── runtimeconfig_config.html.markdown │ │ │ ├── runtimeconfig_variable.html.markdown │ │ │ ├── service_networking_connection.html.markdown │ │ │ ├── spanner_database_iam.html.markdown │ │ │ ├── spanner_instance_iam.html.markdown │ │ │ ├── sql_database_instance.html.markdown │ │ │ ├── sql_ssl_cert.html.markdown │ │ │ ├── sql_user.html.markdown │ │ │ ├── storage_bucket.html.markdown │ │ │ ├── storage_bucket_acl.html.markdown │ │ │ ├── storage_bucket_object.html.markdown │ │ │ ├── storage_default_object_acl.html.markdown │ │ │ ├── storage_notification.html.markdown │ │ │ ├── storage_object_acl.html.markdown │ │ │ ├── storage_transfer_job.html.markdown │ │ │ └── usage_export_bucket.html.markdown │ └── validator │ │ ├── bigquery_dataset_iam.go │ │ ├── bigquery_table.go │ │ ├── bigtable_cluster.go │ │ ├── bigtable_instance.go │ │ ├── cai.go │ │ ├── cai_test.go │ │ ├── cloudfunctions_cloud_function.go │ │ ├── cloudfunctions_function.go │ │ ├── compute_instance.go.erb │ │ ├── compute_security_policy.go │ │ ├── constants.go │ │ ├── container.go │ │ ├── dcl.go │ │ ├── folder_iam.go │ │ ├── folder_organization_policy.go │ │ ├── getconfig.go │ │ ├── getconfig_test.go │ │ ├── iam_helpers.go │ │ ├── iam_helpers_test.go │ │ ├── json_map.go │ │ ├── kms_crypto_key_iam.go │ │ ├── kms_key_ring_iam.go │ │ ├── monitoring_slo_helper.go │ │ ├── organization_iam.go │ │ ├── organization_iam_custom_role.go │ │ ├── organization_policy.go │ │ ├── project.go │ │ ├── project_iam.go │ │ ├── project_iam_custom_role.go │ │ ├── project_organization_policy.go │ │ ├── project_service.go │ │ ├── project_service_test.go │ │ ├── pubsub_subscription_iam.go │ │ ├── spanner_database_iam.go │ │ ├── spanner_instance_iam.go │ │ ├── sql_database_instance.go │ │ ├── storage_bucket.go │ │ ├── storage_bucket_iam.go │ │ └── tests │ │ ├── README.md │ │ ├── data-ignored │ │ ├── README.md │ │ ├── example_monitoring_alert_policy.json │ │ ├── example_monitoring_alert_policy.tf │ │ ├── example_monitoring_alert_policy.tfplan.json │ │ ├── example_redis_instance.json │ │ ├── example_redis_instance.tf │ │ └── example_redis_instance.tfplan.json │ │ ├── data │ │ ├── bucket.json │ │ ├── bucket.tf │ │ ├── disk.json │ │ ├── disk.tf │ │ ├── example_access_context_manager_access_policy.json │ │ ├── example_access_context_manager_access_policy.tf │ │ ├── example_access_context_manager_access_policy.tfplan.json │ │ ├── example_access_context_manager_service_perimeter.json │ │ ├── example_access_context_manager_service_perimeter.tf │ │ ├── example_access_context_manager_service_perimeter.tfplan.json │ │ ├── example_bigquery_dataset.json │ │ ├── example_bigquery_dataset.tf │ │ ├── example_bigquery_dataset.tfplan.json │ │ ├── example_bigquery_dataset_iam_binding.json │ │ ├── example_bigquery_dataset_iam_binding.tf │ │ ├── example_bigquery_dataset_iam_binding.tfplan.json │ │ ├── example_bigquery_dataset_iam_member.json │ │ ├── example_bigquery_dataset_iam_member.tf │ │ ├── example_bigquery_dataset_iam_member.tfplan.json │ │ ├── example_bigquery_dataset_iam_policy.json │ │ ├── example_bigquery_dataset_iam_policy.tf │ │ ├── example_bigquery_dataset_iam_policy.tfplan.json │ │ ├── example_bigquery_dataset_iam_policy_empty_policy_data.json │ │ ├── example_bigquery_dataset_iam_policy_empty_policy_data.tf │ │ ├── example_bigquery_dataset_iam_policy_empty_policy_data.tfplan.json │ │ ├── example_bigquery_table.json │ │ ├── example_bigquery_table.tf │ │ ├── example_bigquery_table.tfplan.json │ │ ├── example_bigtable_instance.json │ │ ├── example_bigtable_instance.tf │ │ ├── example_bigtable_instance.tfplan.json │ │ ├── example_cloud_run_mapping.json │ │ ├── example_cloud_run_mapping.tf │ │ ├── example_cloud_run_mapping.tfplan.json │ │ ├── example_cloud_run_service.json │ │ ├── example_cloud_run_service.tf │ │ ├── example_cloud_run_service.tfplan.json │ │ ├── example_cloud_run_service_iam_binding.json │ │ ├── example_cloud_run_service_iam_binding.tf │ │ ├── example_cloud_run_service_iam_binding.tfplan.json │ │ ├── example_cloud_run_service_iam_member.json │ │ ├── example_cloud_run_service_iam_member.tf │ │ ├── example_cloud_run_service_iam_member.tfplan.json │ │ ├── example_cloud_run_service_iam_policy.json │ │ ├── example_cloud_run_service_iam_policy.tf │ │ ├── example_cloud_run_service_iam_policy.tfplan.json │ │ ├── example_compute_address.json │ │ ├── example_compute_address.tf │ │ ├── example_compute_address.tfplan.json │ │ ├── example_compute_disk.json │ │ ├── example_compute_disk.tf │ │ ├── example_compute_disk.tfplan.json │ │ ├── example_compute_disk_empty_image.json │ │ ├── example_compute_disk_empty_image.tf │ │ ├── example_compute_disk_empty_image.tfplan.json │ │ ├── example_compute_firewall.json │ │ ├── example_compute_firewall.tf │ │ ├── example_compute_firewall.tfplan.json │ │ ├── example_compute_forwarding_rule.json │ │ ├── example_compute_forwarding_rule.tf │ │ ├── example_compute_global_address.json │ │ ├── example_compute_global_address.tf │ │ ├── example_compute_global_address.tfplan.json │ │ ├── example_compute_global_forwarding_rule.json │ │ ├── example_compute_global_forwarding_rule.tf │ │ ├── example_compute_global_forwarding_rule.tfplan.json │ │ ├── example_compute_instance.json │ │ ├── example_compute_instance.tf │ │ ├── example_compute_instance_iam_binding.json │ │ ├── example_compute_instance_iam_binding.tf │ │ ├── example_compute_instance_iam_binding.tfplan.json │ │ ├── example_compute_instance_iam_member.json │ │ ├── example_compute_instance_iam_member.tf │ │ ├── example_compute_instance_iam_member.tfplan.json │ │ ├── example_compute_instance_iam_policy.json │ │ ├── example_compute_instance_iam_policy.tf │ │ ├── example_compute_instance_iam_policy.tfplan.json │ │ ├── example_compute_network.json │ │ ├── example_compute_network.tf │ │ ├── example_compute_network.tfplan.json │ │ ├── example_compute_security_policy.json │ │ ├── example_compute_security_policy.tf │ │ ├── example_compute_security_policy.tfplan.json │ │ ├── example_compute_snapshot.json │ │ ├── example_compute_snapshot.tf │ │ ├── example_compute_snapshot.tfplan.json │ │ ├── example_compute_ssl_policy.json │ │ ├── example_compute_ssl_policy.tf │ │ ├── example_compute_ssl_policy.tfplan.json │ │ ├── example_compute_subnetwork.json │ │ ├── example_compute_subnetwork.tf │ │ ├── example_compute_subnetwork.tfplan.json │ │ ├── example_container_cluster.json │ │ ├── example_container_cluster.tf │ │ ├── example_container_cluster.tfplan.json │ │ ├── example_dns_managed_zone.json │ │ ├── example_dns_managed_zone.tf │ │ ├── example_dns_managed_zone.tfplan.json │ │ ├── example_dns_policy.json │ │ ├── example_dns_policy.tf │ │ ├── example_dns_policy.tfplan.json │ │ ├── example_filestore_instance.json │ │ ├── example_filestore_instance.tf │ │ ├── example_filestore_instance.tfplan.json │ │ ├── example_folder_iam_binding.json │ │ ├── example_folder_iam_binding.tf │ │ ├── example_folder_iam_binding.tfplan.json │ │ ├── example_folder_iam_member.json │ │ ├── example_folder_iam_member.tf │ │ ├── example_folder_iam_member.tfplan.json │ │ ├── example_folder_iam_policy.json │ │ ├── example_folder_iam_policy.tf │ │ ├── example_folder_iam_policy.tfplan.json │ │ ├── example_folder_organization_policy.json │ │ ├── example_folder_organization_policy.tf │ │ ├── example_folder_organization_policy.tfplan.json │ │ ├── example_google_cloudfunctions_function.json │ │ ├── example_google_cloudfunctions_function.tf │ │ ├── example_google_cloudfunctions_function.tfplan.json │ │ ├── example_google_sql_database.json │ │ ├── example_google_sql_database.tf │ │ ├── example_google_sql_database.tfplan.json │ │ ├── example_kms_crypto_key.json │ │ ├── example_kms_crypto_key.tf │ │ ├── example_kms_crypto_key.tfplan.json │ │ ├── example_kms_crypto_key_iam_binding.json │ │ ├── example_kms_crypto_key_iam_binding.tf │ │ ├── example_kms_crypto_key_iam_binding.tfplan.json │ │ ├── example_kms_crypto_key_iam_member.json │ │ ├── example_kms_crypto_key_iam_member.tf │ │ ├── example_kms_crypto_key_iam_member.tfplan.json │ │ ├── example_kms_crypto_key_iam_policy.json │ │ ├── example_kms_crypto_key_iam_policy.tf │ │ ├── example_kms_crypto_key_iam_policy.tfplan.json │ │ ├── example_kms_key_ring.json │ │ ├── example_kms_key_ring.tf │ │ ├── example_kms_key_ring.tfplan.json │ │ ├── example_kms_key_ring_iam_binding.json │ │ ├── example_kms_key_ring_iam_binding.tf │ │ ├── example_kms_key_ring_iam_binding.tfplan.json │ │ ├── example_kms_key_ring_iam_member.json │ │ ├── example_kms_key_ring_iam_member.tf │ │ ├── example_kms_key_ring_iam_member.tfplan.json │ │ ├── example_kms_key_ring_iam_policy.json │ │ ├── example_kms_key_ring_iam_policy.tf │ │ ├── example_kms_key_ring_iam_policy.tfplan.json │ │ ├── example_monitoring_notification_channel.json │ │ ├── example_monitoring_notification_channel.tf │ │ ├── example_monitoring_notification_channel.tfplan.json │ │ ├── example_organization_iam_binding.json │ │ ├── example_organization_iam_binding.tf │ │ ├── example_organization_iam_binding.tfplan.json │ │ ├── example_organization_iam_custom_role.json │ │ ├── example_organization_iam_custom_role.tf │ │ ├── example_organization_iam_custom_role.tfplan.json │ │ ├── example_organization_iam_member.json │ │ ├── example_organization_iam_member.tf │ │ ├── example_organization_iam_member.tfplan.json │ │ ├── example_organization_iam_policy.json │ │ ├── example_organization_iam_policy.tf │ │ ├── example_organization_iam_policy.tfplan.json │ │ ├── example_organization_policy.json │ │ ├── example_organization_policy.tf │ │ ├── example_organization_policy.tfplan.json │ │ ├── example_project_create.json │ │ ├── example_project_create.tf │ │ ├── example_project_create.tfplan.json │ │ ├── example_project_create_empty_project_id.json │ │ ├── example_project_create_empty_project_id.tf │ │ ├── example_project_create_empty_project_id.tfplan.json │ │ ├── example_project_create_empty_project_id_without_default_project.json │ │ ├── example_project_iam.json │ │ ├── example_project_iam.tf │ │ ├── example_project_iam.tfplan.json │ │ ├── example_project_iam_binding.json │ │ ├── example_project_iam_binding.tf │ │ ├── example_project_iam_binding.tfplan.json │ │ ├── example_project_iam_custom_role.json │ │ ├── example_project_iam_custom_role.tf │ │ ├── example_project_iam_custom_role.tfplan.json │ │ ├── example_project_iam_member.json │ │ ├── example_project_iam_member.tf │ │ ├── example_project_iam_member.tfplan.json │ │ ├── example_project_iam_member_empty_project.json │ │ ├── example_project_iam_member_empty_project.tf │ │ ├── example_project_iam_member_empty_project.tfplan.json │ │ ├── example_project_iam_member_empty_project_without_default_project.json │ │ ├── example_project_iam_policy.json │ │ ├── example_project_iam_policy.tf │ │ ├── example_project_iam_policy.tfplan.json │ │ ├── example_project_in_folder.json │ │ ├── example_project_in_folder.tf │ │ ├── example_project_in_folder.tfplan.json │ │ ├── example_project_in_org.json │ │ ├── example_project_in_org.tf │ │ ├── example_project_in_org.tfplan.json │ │ ├── example_project_organization_policy.json │ │ ├── example_project_organization_policy.tf │ │ ├── example_project_organization_policy.tfplan.json │ │ ├── example_project_service.json │ │ ├── example_project_service.tf │ │ ├── example_project_service.tfplan.json │ │ ├── example_project_update.json │ │ ├── example_project_update.tf │ │ ├── example_project_update.tfplan.json │ │ ├── example_project_update.tfstate │ │ ├── example_pubsub_lite_reservation.json │ │ ├── example_pubsub_lite_reservation.tf │ │ ├── example_pubsub_lite_reservation.tfplan.json │ │ ├── example_pubsub_lite_subscription.json │ │ ├── example_pubsub_lite_subscription.tf │ │ ├── example_pubsub_lite_subscription.tfplan.json │ │ ├── example_pubsub_lite_topic.json │ │ ├── example_pubsub_lite_topic.tf │ │ ├── example_pubsub_lite_topic.tfplan.json │ │ ├── example_pubsub_schema.json │ │ ├── example_pubsub_schema.tf │ │ ├── example_pubsub_schema.tfplan.json │ │ ├── example_pubsub_subscription.json │ │ ├── example_pubsub_subscription.tf │ │ ├── example_pubsub_subscription.tfplan.json │ │ ├── example_pubsub_subscription_iam_binding.json │ │ ├── example_pubsub_subscription_iam_binding.tf │ │ ├── example_pubsub_subscription_iam_binding.tfplan.json │ │ ├── example_pubsub_subscription_iam_member.json │ │ ├── example_pubsub_subscription_iam_member.tf │ │ ├── example_pubsub_subscription_iam_member.tfplan.json │ │ ├── example_pubsub_subscription_iam_policy.json │ │ ├── example_pubsub_subscription_iam_policy.tf │ │ ├── example_pubsub_subscription_iam_policy.tfplan.json │ │ ├── example_pubsub_topic.json │ │ ├── example_pubsub_topic.tf │ │ ├── example_pubsub_topic.tfplan.json │ │ ├── example_spanner_database.json │ │ ├── example_spanner_database.tf │ │ ├── example_spanner_database.tfplan.json │ │ ├── example_spanner_database_iam_binding.json │ │ ├── example_spanner_database_iam_binding.tf │ │ ├── example_spanner_database_iam_binding.tfplan.json │ │ ├── example_spanner_database_iam_member.json │ │ ├── example_spanner_database_iam_member.tf │ │ ├── example_spanner_database_iam_member.tfplan.json │ │ ├── example_spanner_database_iam_policy.json │ │ ├── example_spanner_database_iam_policy.tf │ │ ├── example_spanner_database_iam_policy.tfplan.json │ │ ├── example_spanner_instance_iam_binding.json │ │ ├── example_spanner_instance_iam_binding.tf │ │ ├── example_spanner_instance_iam_binding.tfplan.json │ │ ├── example_spanner_instance_iam_member.json │ │ ├── example_spanner_instance_iam_member.tf │ │ ├── example_spanner_instance_iam_member.tfplan.json │ │ ├── example_spanner_instance_iam_policy.json │ │ ├── example_spanner_instance_iam_policy.tf │ │ ├── example_spanner_instance_iam_policy.tfplan.json │ │ ├── example_sql_database_instance.json │ │ ├── example_sql_database_instance.tf │ │ ├── example_sql_database_instance.tfplan.json │ │ ├── example_storage_bucket.json │ │ ├── example_storage_bucket.tf │ │ ├── example_storage_bucket.tfplan.json │ │ ├── example_storage_bucket_iam_binding.json │ │ ├── example_storage_bucket_iam_binding.tf │ │ ├── example_storage_bucket_iam_binding.tfplan.json │ │ ├── example_storage_bucket_iam_member.json │ │ ├── example_storage_bucket_iam_member.tf │ │ ├── example_storage_bucket_iam_member.tfplan.json │ │ ├── example_storage_bucket_iam_member_random_suffix.json │ │ ├── example_storage_bucket_iam_member_random_suffix.tf │ │ ├── example_storage_bucket_iam_member_random_suffix.tfplan.json │ │ ├── example_storage_bucket_iam_policy.json │ │ ├── example_storage_bucket_iam_policy.tf │ │ ├── example_storage_bucket_iam_policy.tfplan.json │ │ ├── example_storage_bucket_without_default_project.json │ │ ├── example_vpc_access_connector.json │ │ ├── example_vpc_access_connector.tf │ │ ├── example_vpc_access_connector.tfplan.json │ │ ├── firewall.json │ │ ├── firewall.tf │ │ ├── full_compute_firewall.json │ │ ├── full_compute_firewall.tf │ │ ├── full_compute_firewall.tfplan.json │ │ ├── full_compute_instance.json │ │ ├── full_compute_instance.tf │ │ ├── full_compute_instance.tfplan.json │ │ ├── full_container_cluster.json │ │ ├── full_container_cluster.tf │ │ ├── full_container_cluster.tfplan.json │ │ ├── full_container_node_pool.json │ │ ├── full_container_node_pool.tf │ │ ├── full_container_node_pool.tfplan.json │ │ ├── full_spanner_instance.json │ │ ├── full_spanner_instance.tf │ │ ├── full_spanner_instance.tfplan.json │ │ ├── full_sql_database_instance.json │ │ ├── full_sql_database_instance.tf │ │ ├── full_sql_database_instance.tfplan.json │ │ ├── full_storage_bucket.json │ │ ├── full_storage_bucket.tf │ │ ├── full_storage_bucket.tfplan.json │ │ ├── instance.json │ │ ├── instance.tf │ │ ├── sql.json │ │ └── sql.tf │ │ └── source │ │ ├── cli_test.go.erb │ │ ├── environment_test.go │ │ ├── init_test.go │ │ ├── read_planned_assets │ │ ├── tf0_12plan.allcoverage.json │ │ ├── tf0_12plan.applied.json │ │ ├── tf0_12plan.json │ │ ├── tf1_0plan.allcoverage.json │ │ ├── tf1_0plan.applied.json │ │ └── tf1_0plan.json │ │ ├── read_test.go.erb │ │ └── utils_test.go └── tools │ ├── bootstrap │ └── doctor └── tpgtools ├── README.md ├── api ├── apikeys │ └── samples │ │ ├── android.key.json │ │ ├── android_key.yaml │ │ ├── android_update.key.json │ │ ├── apikeys.serviceusage.service.json │ │ ├── basic.cloudbilling.project_billing_info.json │ │ ├── basic.cloudresourcemanager.project.json │ │ ├── basic.key.json │ │ ├── basic_key.yaml │ │ ├── ios.key.json │ │ ├── ios_key.yaml │ │ ├── ios_update.key.json │ │ ├── minimal.key.json │ │ ├── minimal_key.yaml │ │ ├── server.key.json │ │ ├── server_key.yaml │ │ ├── server_update.key.json │ │ └── update.key.json ├── assuredworkloads │ └── samples │ │ ├── basic.workload.json │ │ ├── basic_workload.yaml │ │ └── update.workload.json ├── clouddeploy │ └── samples │ │ ├── add_first_execution_config.target.json │ │ ├── add_second_execution_config.target.json │ │ ├── basic.delivery_pipeline.json │ │ ├── basic.target.json │ │ ├── delivery_pipeline.yaml │ │ ├── target.yaml │ │ ├── update.delivery_pipeline.json │ │ ├── update.target.json │ │ └── update_execution_env.target.json ├── dataplex │ └── samples │ │ ├── basic.lake.json │ │ ├── basic.zone.json │ │ ├── basic_lake.yaml │ │ ├── basic_zone.yaml │ │ ├── update.lake.json │ │ └── update.zone.json ├── firebaserules │ └── samples │ │ ├── basic.release.json │ │ ├── basic.ruleset.json │ │ ├── basic_release.yaml │ │ ├── basic_ruleset.yaml │ │ ├── minimal.release.json │ │ ├── minimal.ruleset.json │ │ ├── minimal_release.yaml │ │ ├── minimal_ruleset.yaml │ │ └── update.release.json ├── monitoring │ └── samples │ │ ├── basic.cloudresourcemanager.project.json │ │ ├── basic.monitored_project.json │ │ └── basic_monitored_project.yaml ├── networkconnectivity │ └── samples │ │ ├── basic.hub.json │ │ ├── basic_hub.yaml │ │ └── update.hub.json ├── orgpolicy │ └── samples │ │ ├── basic.cloudresourcemanager.folder.json │ │ ├── basic.cloudresourcemanager.project.json │ │ ├── enforce.policy.json │ │ ├── enforce_policy.yaml │ │ ├── folder.policy.json │ │ ├── folder_policy.yaml │ │ ├── organization.policy.json │ │ ├── organization_policy.yaml │ │ ├── project.policy.json │ │ ├── project_policy.yaml │ │ ├── update_enforce.policy.json │ │ ├── update_folder.policy.json │ │ ├── update_organization.policy.json │ │ └── update_project.policy.json ├── osconfig │ └── samples │ │ ├── fixed.os_policy_assignment.json │ │ ├── fixed_os_policy_assignment.yaml │ │ ├── percent.os_policy_assignment.json │ │ ├── percent_os_policy_assignment.yaml │ │ ├── update_fixed.os_policy_assignment.json │ │ └── update_percent.os_policy_assignment.json ├── privateca │ └── samples │ │ ├── basic.certificate_template.json │ │ ├── basic_certificate_template.yaml │ │ └── update.certificate_template.json └── recaptchaenterprise │ └── samples │ ├── android.key.json │ ├── android_key.yaml │ ├── ios.key.json │ ├── ios_key.yaml │ ├── minimal.key.json │ ├── minimal_key.yaml │ ├── update_android.key.json │ ├── update_ios.key.json │ ├── update_web.key.json │ ├── update_web_score.key.json │ ├── web.key.json │ ├── web_key.yaml │ ├── web_score.key.json │ └── web_score_key.yaml ├── documentation.go ├── file_utils.go ├── go.mod ├── go.sum ├── handwritten.go ├── handwritten ├── dcl.go ├── dcl_logger.go ├── expanders.go ├── flatteners.go ├── orgpolicy_utils.go └── tpgtools_utils.go ├── id.go ├── ignored_handwritten ├── access_context_manager_utils.go ├── common_custom_diff.go ├── common_custom_directive.go ├── common_diff_suppress.go ├── common_set_hash.go ├── common_skip_delete.go ├── compute_utils.go ├── custom_import.go ├── disk_utils.go ├── expanders.go ├── go.mod ├── redis_utils.go ├── runtimeconfig_utils.go ├── state_setters.go ├── storage_utils.go ├── tpu_utils.go └── validation.go ├── main.go ├── main_helpers.go ├── misc_utils.go ├── mmv1.md ├── names.go ├── override.go ├── override_details.go ├── overrides ├── apikeys │ ├── beta │ │ └── key.yaml │ ├── key.yaml │ └── samples │ │ └── key │ │ └── meta.yaml ├── assuredworkloads │ ├── beta │ │ └── workload.yaml │ ├── samples │ │ └── workload │ │ │ ├── basic.tf.tmpl │ │ │ ├── basic.yaml │ │ │ ├── basic_update.tf.tmpl │ │ │ ├── full.tf.tmpl │ │ │ ├── full.yaml │ │ │ └── meta.yaml │ └── workload.yaml ├── bigqueryreservation │ ├── assignment.yaml │ ├── beta │ │ ├── assignment.yaml │ │ └── tpgtools_product.yaml │ ├── samples │ │ └── assignment │ │ │ ├── basic.tf.tmpl │ │ │ ├── basic.yaml │ │ │ └── meta.yaml │ └── tpgtools_product.yaml ├── cloudbuild │ ├── beta │ │ ├── tpgtools_product.yaml │ │ └── worker_pool.yaml │ ├── tpgtools_product.yaml │ └── worker_pool.yaml ├── clouddeploy │ ├── beta │ │ ├── delivery_pipeline.yaml │ │ ├── target.yaml │ │ └── tpgtools_product.yaml │ ├── delivery_pipeline.yaml │ ├── samples │ │ ├── deliverypipeline │ │ │ └── meta.yaml │ │ └── target │ │ │ └── meta.yaml │ ├── target.yaml │ └── tpgtools_product.yaml ├── cloudresourcemanager │ ├── beta │ │ ├── folder.yaml │ │ └── project.yaml │ ├── folder.yaml │ └── project.yaml ├── compute │ ├── beta │ │ ├── firewall_policy.yaml │ │ ├── firewall_policy_association.yaml │ │ ├── firewall_policy_rule.yaml │ │ ├── forwarding_rule.yaml │ │ └── tpgtools_product.yaml │ ├── firewall_policy.yaml │ ├── firewall_policy_association.yaml │ ├── firewall_policy_rule.yaml │ ├── forwarding_rule.yaml │ └── tpgtools_product.yaml ├── containeraws │ ├── beta │ │ ├── cluster.yaml │ │ ├── node_pool.yaml │ │ └── tpgtools_product.yaml │ ├── cluster.yaml │ ├── node_pool.yaml │ ├── samples │ │ ├── cluster │ │ │ ├── basic.tf.tmpl │ │ │ ├── basic.yaml │ │ │ ├── basic_update.tf.tmpl │ │ │ ├── beta_basic.tf.tmpl │ │ │ ├── beta_basic.yaml │ │ │ ├── beta_basic_update.tf.tmpl │ │ │ └── meta.yaml │ │ └── nodepool │ │ │ ├── basic.tf.tmpl │ │ │ ├── basic.yaml │ │ │ ├── basic_update.tf.tmpl │ │ │ ├── beta_basic.tf.tmpl │ │ │ ├── beta_basic.yaml │ │ │ ├── beta_basic_update.tf.tmpl │ │ │ └── meta.yaml │ └── tpgtools_product.yaml ├── containerazure │ ├── azure_client.yaml │ ├── beta │ │ ├── azure_client.yaml │ │ ├── cluster.yaml │ │ ├── node_pool.yaml │ │ └── tpgtools_product.yaml │ ├── cluster.yaml │ ├── node_pool.yaml │ ├── samples │ │ ├── client │ │ │ ├── basic.tf.tmpl │ │ │ ├── basic.yaml │ │ │ └── meta.yaml │ │ ├── cluster │ │ │ ├── basic.tf.tmpl │ │ │ ├── basic.yaml │ │ │ ├── basic_update.tf.tmpl │ │ │ ├── beta_basic.tf.tmpl │ │ │ ├── beta_basic.yaml │ │ │ ├── beta_basic_update.tf.tmpl │ │ │ └── meta.yaml │ │ └── nodepool │ │ │ ├── basic.tf.tmpl │ │ │ ├── basic.yaml │ │ │ ├── basic_update.tf.tmpl │ │ │ ├── beta_basic.tf.tmpl │ │ │ ├── beta_basic.yaml │ │ │ ├── beta_basic_update.tf.tmpl │ │ │ └── meta.yaml │ └── tpgtools_product.yaml ├── dataplex │ ├── asset.yaml │ ├── beta │ │ ├── asset.yaml │ │ ├── lake.yaml │ │ └── zone.yaml │ ├── lake.yaml │ ├── samples │ │ ├── asset │ │ │ ├── basic_asset.tf.tmpl │ │ │ ├── basic_asset.yaml │ │ │ └── meta.yaml │ │ ├── lake │ │ │ └── meta.yaml │ │ └── zone │ │ │ └── meta.yaml │ └── zone.yaml ├── dataproc │ ├── beta │ │ ├── tpgtools_product.yaml │ │ └── workflow_template.yaml │ ├── tpgtools_product.yaml │ └── workflow_template.yaml ├── eventarc │ ├── beta │ │ └── trigger.yaml │ ├── samples │ │ └── trigger │ │ │ ├── basic.tf.tmpl │ │ │ ├── basic.yaml │ │ │ ├── basic_update_transport.tf.tmpl │ │ │ ├── basic_update_transport_2.tf.tmpl │ │ │ └── meta.yaml │ └── trigger.yaml ├── firebaserules │ ├── beta │ │ ├── release.yaml │ │ └── ruleset.yaml │ ├── release.yaml │ ├── ruleset.yaml │ └── samples │ │ ├── release │ │ └── meta.yaml │ │ └── ruleset │ │ └── meta.yaml ├── gkehub │ ├── beta │ │ ├── feature.yaml │ │ ├── feature_membership.yaml │ │ └── tpgtools_product.yaml │ └── samples │ │ └── feature_membership │ │ └── meta.yaml ├── logging │ ├── beta │ │ ├── log_view.yaml │ │ └── tpgtools_product.yaml │ ├── log_view.yaml │ ├── samples │ │ └── logview │ │ │ ├── basic.tf.tmpl │ │ │ ├── basic.yaml │ │ │ └── meta.yaml │ └── tpgtools_product.yaml ├── monitoring │ ├── beta │ │ ├── monitored_project.yaml │ │ └── tpgtools_product.yaml │ ├── monitored_project.yaml │ ├── samples │ │ ├── metricsscope │ │ │ └── meta.yaml │ │ └── monitoredproject │ │ │ └── meta.yaml │ └── tpgtools_product.yaml ├── networkconnectivity │ ├── beta │ │ ├── hub.yaml │ │ └── spoke.yaml │ ├── hub.yaml │ ├── samples │ │ ├── hub │ │ │ ├── basic.yaml │ │ │ └── meta.yaml │ │ └── spoke │ │ │ ├── meta.yaml │ │ │ ├── router_appliance.tf.tmpl │ │ │ ├── router_appliance.yaml │ │ │ └── router_appliance_update.tf.tmpl │ └── spoke.yaml ├── orgpolicy │ ├── beta │ │ └── policy.yaml │ ├── policy.yaml │ └── samples │ │ └── policy │ │ └── meta.yaml ├── osconfig │ ├── beta │ │ ├── os_policy_assignment.yaml │ │ └── tpgtools_product.yaml │ ├── os_policy_assignment.yaml │ ├── samples │ │ └── ospolicyassignment │ │ │ └── meta.yaml │ └── tpgtools_product.yaml ├── privateca │ ├── beta │ │ ├── certificate_template.yaml │ │ └── tpgtools_product.yaml │ ├── certificate_template.yaml │ ├── samples │ │ └── certificatetemplate │ │ │ └── meta.yaml │ └── tpgtools_product.yaml └── recaptchaenterprise │ ├── beta │ └── key.yaml │ ├── key.yaml │ └── samples │ └── key │ └── meta.yaml ├── product.go ├── property.go ├── property_helpers.go ├── resource.go ├── sample.go ├── serializable ├── serializable.go ├── serializable_test.go └── test_specs │ └── api │ └── compute │ └── firewall.yaml ├── serialization.go.base ├── serialization_helpers.go ├── strings.go ├── templates ├── provider_dcl_client_creation.go.tmpl ├── provider_dcl_endpoints.go.tmpl ├── provider_dcl_resources.go.tmpl ├── resource.go.tmpl ├── resource.html.markdown.tmpl ├── serialization.go.tmpl ├── sweeper.go.tmpl └── test_file.go.tmpl ├── type.go └── versions.go /.ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/README.md -------------------------------------------------------------------------------- /.ci/RELEASE_NOTES_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/RELEASE_NOTES_GUIDE.md -------------------------------------------------------------------------------- /.ci/changelog.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/changelog.tmpl -------------------------------------------------------------------------------- /.ci/containers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/containers/README.md -------------------------------------------------------------------------------- /.ci/containers/ansible/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/containers/ansible/Dockerfile -------------------------------------------------------------------------------- /.ci/containers/contributor-checker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/containers/contributor-checker/Dockerfile -------------------------------------------------------------------------------- /.ci/containers/downstream-builder/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/containers/downstream-builder/Dockerfile -------------------------------------------------------------------------------- /.ci/containers/downstream-waiter/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/containers/downstream-waiter/Dockerfile -------------------------------------------------------------------------------- /.ci/containers/downstream-waiter/wait_for_commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/containers/downstream-waiter/wait_for_commit.sh -------------------------------------------------------------------------------- /.ci/containers/gcb-terraform-vcr-tester/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/containers/gcb-terraform-vcr-tester/Dockerfile -------------------------------------------------------------------------------- /.ci/containers/github-differ/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/containers/github-differ/Dockerfile -------------------------------------------------------------------------------- /.ci/containers/github-differ/generate_comment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/containers/github-differ/generate_comment.sh -------------------------------------------------------------------------------- /.ci/containers/terraform-tester/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/containers/terraform-tester/Dockerfile -------------------------------------------------------------------------------- /.ci/containers/terraform-tester/test_terraform.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/containers/terraform-tester/test_terraform.sh -------------------------------------------------------------------------------- /.ci/containers/terraform-triage-party/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/containers/terraform-triage-party/config.yaml -------------------------------------------------------------------------------- /.ci/containers/terraform-triage-party/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/containers/terraform-triage-party/deploy.sh -------------------------------------------------------------------------------- /.ci/containers/terraform-validator-tester/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/containers/terraform-validator-tester/Dockerfile -------------------------------------------------------------------------------- /.ci/containers/terraform-vcr-community/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/containers/terraform-vcr-community/Dockerfile -------------------------------------------------------------------------------- /.ci/containers/terraform-vcr-tester/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/containers/terraform-vcr-tester/Dockerfile -------------------------------------------------------------------------------- /.ci/containers/terraform-vcr-tester/run_vcr_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/containers/terraform-vcr-tester/run_vcr_tests.sh -------------------------------------------------------------------------------- /.ci/containers/terraform-vcr-tester/teamcityparams.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/containers/terraform-vcr-tester/teamcityparams.xml -------------------------------------------------------------------------------- /.ci/containers/vcr-cassette-merger/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/containers/vcr-cassette-merger/Dockerfile -------------------------------------------------------------------------------- /.ci/containers/vcr-cassette-merger/vcr_merge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/containers/vcr-cassette-merger/vcr_merge.sh -------------------------------------------------------------------------------- /.ci/gcb-changelog-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/gcb-changelog-checker.yml -------------------------------------------------------------------------------- /.ci/gcb-community.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/gcb-community.yml -------------------------------------------------------------------------------- /.ci/gcb-downstream-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/gcb-downstream-builder.yml -------------------------------------------------------------------------------- /.ci/gcb-generate-diffs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/gcb-generate-diffs.yml -------------------------------------------------------------------------------- /.ci/gcb-push-downstream.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/gcb-push-downstream.yml -------------------------------------------------------------------------------- /.ci/gcb-run-rake-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/gcb-run-rake-tests.yml -------------------------------------------------------------------------------- /.ci/release-note.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.ci/release-note.tmpl -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.github/pre-commit -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | tpgtools/overrides @rileykarson 2 | -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/GNUmakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/README.md -------------------------------------------------------------------------------- /mmv1/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/.rubocop.yml -------------------------------------------------------------------------------- /mmv1/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.6.0 2 | -------------------------------------------------------------------------------- /mmv1/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/.yamllint -------------------------------------------------------------------------------- /mmv1/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/Gemfile -------------------------------------------------------------------------------- /mmv1/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/Gemfile.lock -------------------------------------------------------------------------------- /mmv1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/README.md -------------------------------------------------------------------------------- /mmv1/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/Rakefile -------------------------------------------------------------------------------- /mmv1/TUTORIAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/TUTORIAL.md -------------------------------------------------------------------------------- /mmv1/api/async.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/api/async.rb -------------------------------------------------------------------------------- /mmv1/api/compiler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/api/compiler.rb -------------------------------------------------------------------------------- /mmv1/api/object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/api/object.rb -------------------------------------------------------------------------------- /mmv1/api/product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/api/product.rb -------------------------------------------------------------------------------- /mmv1/api/product/api_reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/api/product/api_reference.rb -------------------------------------------------------------------------------- /mmv1/api/product/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/api/product/version.rb -------------------------------------------------------------------------------- /mmv1/api/resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/api/resource.rb -------------------------------------------------------------------------------- /mmv1/api/resource/iam_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/api/resource/iam_policy.rb -------------------------------------------------------------------------------- /mmv1/api/resource/nested_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/api/resource/nested_query.rb -------------------------------------------------------------------------------- /mmv1/api/resource/reference_links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/api/resource/reference_links.rb -------------------------------------------------------------------------------- /mmv1/api/timeout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/api/timeout.rb -------------------------------------------------------------------------------- /mmv1/api/type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/api/type.rb -------------------------------------------------------------------------------- /mmv1/compile/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/compile/core.rb -------------------------------------------------------------------------------- /mmv1/compiler: -------------------------------------------------------------------------------- 1 | compiler.rb -------------------------------------------------------------------------------- /mmv1/compiler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/compiler.rb -------------------------------------------------------------------------------- /mmv1/google/extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/google/extensions.rb -------------------------------------------------------------------------------- /mmv1/google/golang_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/google/golang_utils.rb -------------------------------------------------------------------------------- /mmv1/google/logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/google/logger.rb -------------------------------------------------------------------------------- /mmv1/google/python_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/google/python_utils.rb -------------------------------------------------------------------------------- /mmv1/google/string_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/google/string_utils.rb -------------------------------------------------------------------------------- /mmv1/google/yaml_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/google/yaml_validator.rb -------------------------------------------------------------------------------- /mmv1/images/magic-modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/images/magic-modules.png -------------------------------------------------------------------------------- /mmv1/images/magic-modules.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/images/magic-modules.sketch -------------------------------------------------------------------------------- /mmv1/images/magic-modules.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/images/magic-modules.svg -------------------------------------------------------------------------------- /mmv1/overrides/ansible/property_override.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/overrides/ansible/property_override.rb -------------------------------------------------------------------------------- /mmv1/overrides/ansible/resource_override.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/overrides/ansible/resource_override.rb -------------------------------------------------------------------------------- /mmv1/overrides/inspec/property_override.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/overrides/inspec/property_override.rb -------------------------------------------------------------------------------- /mmv1/overrides/inspec/resource_override.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/overrides/inspec/resource_override.rb -------------------------------------------------------------------------------- /mmv1/overrides/resources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/overrides/resources.rb -------------------------------------------------------------------------------- /mmv1/overrides/runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/overrides/runner.rb -------------------------------------------------------------------------------- /mmv1/overrides/terraform/property_override.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/overrides/terraform/property_override.rb -------------------------------------------------------------------------------- /mmv1/overrides/terraform/resource_override.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/overrides/terraform/resource_override.rb -------------------------------------------------------------------------------- /mmv1/overrides/validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/overrides/validator.rb -------------------------------------------------------------------------------- /mmv1/products/accessapproval/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/accessapproval/api.yaml -------------------------------------------------------------------------------- /mmv1/products/accessapproval/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/accessapproval/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/accesscontextmanager/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/accesscontextmanager/api.yaml -------------------------------------------------------------------------------- /mmv1/products/accesscontextmanager/inspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/accesscontextmanager/inspec.yaml -------------------------------------------------------------------------------- /mmv1/products/accesscontextmanager/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/accesscontextmanager/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/activedirectory/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/activedirectory/api.yaml -------------------------------------------------------------------------------- /mmv1/products/activedirectory/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/activedirectory/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/apigateway/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/apigateway/api.yaml -------------------------------------------------------------------------------- /mmv1/products/apigateway/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/apigateway/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/apigee/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/apigee/api.yaml -------------------------------------------------------------------------------- /mmv1/products/apigee/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/apigee/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/appengine/ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/appengine/ansible.yaml -------------------------------------------------------------------------------- /mmv1/products/appengine/ansible_version_added.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/appengine/ansible_version_added.yaml -------------------------------------------------------------------------------- /mmv1/products/appengine/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/appengine/api.yaml -------------------------------------------------------------------------------- /mmv1/products/appengine/inspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/appengine/inspec.yaml -------------------------------------------------------------------------------- /mmv1/products/appengine/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/appengine/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/artifactregistry/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/artifactregistry/api.yaml -------------------------------------------------------------------------------- /mmv1/products/artifactregistry/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/artifactregistry/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/bigquery/ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/bigquery/ansible.yaml -------------------------------------------------------------------------------- /mmv1/products/bigquery/ansible_version_added.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/bigquery/ansible_version_added.yaml -------------------------------------------------------------------------------- /mmv1/products/bigquery/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/bigquery/api.yaml -------------------------------------------------------------------------------- /mmv1/products/bigquery/examples/ansible/dataset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/bigquery/examples/ansible/dataset.yaml -------------------------------------------------------------------------------- /mmv1/products/bigquery/examples/ansible/table.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/bigquery/examples/ansible/table.yaml -------------------------------------------------------------------------------- /mmv1/products/bigquery/inspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/bigquery/inspec.yaml -------------------------------------------------------------------------------- /mmv1/products/bigquery/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/bigquery/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/bigqueryconnection/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/bigqueryconnection/api.yaml -------------------------------------------------------------------------------- /mmv1/products/bigqueryconnection/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/bigqueryconnection/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/bigquerydatatransfer/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/bigquerydatatransfer/api.yaml -------------------------------------------------------------------------------- /mmv1/products/bigquerydatatransfer/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/bigquerydatatransfer/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/bigqueryreservation/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/bigqueryreservation/api.yaml -------------------------------------------------------------------------------- /mmv1/products/bigqueryreservation/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/bigqueryreservation/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/bigtable/ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/bigtable/ansible.yaml -------------------------------------------------------------------------------- /mmv1/products/bigtable/ansible_version_added.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/bigtable/ansible_version_added.yaml -------------------------------------------------------------------------------- /mmv1/products/bigtable/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/bigtable/api.yaml -------------------------------------------------------------------------------- /mmv1/products/bigtable/examples/ansible/instance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/bigtable/examples/ansible/instance.yaml -------------------------------------------------------------------------------- /mmv1/products/bigtable/helpers/ansible/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/bigtable/helpers/ansible/instance.py -------------------------------------------------------------------------------- /mmv1/products/bigtable/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/bigtable/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/billingbudget/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/billingbudget/api.yaml -------------------------------------------------------------------------------- /mmv1/products/billingbudget/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/billingbudget/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/binaryauthorization/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/binaryauthorization/api.yaml -------------------------------------------------------------------------------- /mmv1/products/binaryauthorization/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/binaryauthorization/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/certificatemanager/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/certificatemanager/api.yaml -------------------------------------------------------------------------------- /mmv1/products/certificatemanager/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/certificatemanager/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/cgc/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cgc/api.yaml -------------------------------------------------------------------------------- /mmv1/products/cgc/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cgc/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudasset/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudasset/api.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudasset/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudasset/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudbilling/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudbilling/api.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudbilling/inspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudbilling/inspec.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudbuild/ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudbuild/ansible.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudbuild/ansible_version_added.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudbuild/ansible_version_added.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudbuild/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudbuild/api.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudbuild/examples/ansible/trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudbuild/examples/ansible/trigger.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudbuild/inspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudbuild/inspec.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudbuild/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudbuild/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudfunctions/ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudfunctions/ansible.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudfunctions/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudfunctions/api.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudfunctions/inspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudfunctions/inspec.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudfunctions/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudfunctions/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudfunctions2/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudfunctions2/api.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudfunctions2/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudfunctions2/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudidentity/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudidentity/api.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudidentity/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudidentity/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudiot/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudiot/api.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudiot/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudiot/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudrun/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudrun/api.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudrun/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudrun/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudscheduler/ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudscheduler/ansible.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudscheduler/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudscheduler/api.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudscheduler/examples/ansible/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudscheduler/examples/ansible/job.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudscheduler/helpers/python/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudscheduler/helpers/python/job.py -------------------------------------------------------------------------------- /mmv1/products/cloudscheduler/inspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudscheduler/inspec.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudscheduler/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudscheduler/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudtasks/ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudtasks/ansible.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudtasks/ansible_version_added.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudtasks/ansible_version_added.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudtasks/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudtasks/api.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudtasks/examples/ansible/queue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudtasks/examples/ansible/queue.yaml -------------------------------------------------------------------------------- /mmv1/products/cloudtasks/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/cloudtasks/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/compute/ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/compute/ansible.yaml -------------------------------------------------------------------------------- /mmv1/products/compute/ansible_version_added.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/compute/ansible_version_added.yaml -------------------------------------------------------------------------------- /mmv1/products/compute/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/compute/api.yaml -------------------------------------------------------------------------------- /mmv1/products/compute/examples/ansible/address.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/compute/examples/ansible/address.yaml -------------------------------------------------------------------------------- /mmv1/products/compute/examples/ansible/autoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/compute/examples/ansible/autoscaler.yaml -------------------------------------------------------------------------------- /mmv1/products/compute/examples/ansible/disk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/compute/examples/ansible/disk.yaml -------------------------------------------------------------------------------- /mmv1/products/compute/examples/ansible/firewall.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/compute/examples/ansible/firewall.yaml -------------------------------------------------------------------------------- /mmv1/products/compute/examples/ansible/image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/compute/examples/ansible/image.yaml -------------------------------------------------------------------------------- /mmv1/products/compute/examples/ansible/instance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/compute/examples/ansible/instance.yaml -------------------------------------------------------------------------------- /mmv1/products/compute/examples/ansible/network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/compute/examples/ansible/network.yaml -------------------------------------------------------------------------------- /mmv1/products/compute/examples/ansible/node_group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/compute/examples/ansible/node_group.yaml -------------------------------------------------------------------------------- /mmv1/products/compute/examples/ansible/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/compute/examples/ansible/route.yaml -------------------------------------------------------------------------------- /mmv1/products/compute/examples/ansible/router.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/compute/examples/ansible/router.yaml -------------------------------------------------------------------------------- /mmv1/products/compute/examples/ansible/snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/compute/examples/ansible/snapshot.yaml -------------------------------------------------------------------------------- /mmv1/products/compute/examples/ansible/ssl_policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/compute/examples/ansible/ssl_policy.yaml -------------------------------------------------------------------------------- /mmv1/products/compute/examples/ansible/subnetwork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/compute/examples/ansible/subnetwork.yaml -------------------------------------------------------------------------------- /mmv1/products/compute/examples/ansible/url_map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/compute/examples/ansible/url_map.yaml -------------------------------------------------------------------------------- /mmv1/products/compute/examples/ansible/vpn_tunnel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/compute/examples/ansible/vpn_tunnel.yaml -------------------------------------------------------------------------------- /mmv1/products/compute/helpers/python/instance_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/compute/helpers/python/instance_start.py -------------------------------------------------------------------------------- /mmv1/products/compute/inspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/compute/inspec.yaml -------------------------------------------------------------------------------- /mmv1/products/compute/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/compute/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/container/ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/container/ansible.yaml -------------------------------------------------------------------------------- /mmv1/products/container/ansible_version_added.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/container/ansible_version_added.yaml -------------------------------------------------------------------------------- /mmv1/products/container/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/container/api.yaml -------------------------------------------------------------------------------- /mmv1/products/container/examples/ansible/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/container/examples/ansible/cluster.yaml -------------------------------------------------------------------------------- /mmv1/products/container/helpers/python/kubectl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/container/helpers/python/kubectl.py -------------------------------------------------------------------------------- /mmv1/products/container/inspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/container/inspec.yaml -------------------------------------------------------------------------------- /mmv1/products/containeranalysis/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/containeranalysis/api.yaml -------------------------------------------------------------------------------- /mmv1/products/containeranalysis/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/containeranalysis/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/datacatalog/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/datacatalog/api.yaml -------------------------------------------------------------------------------- /mmv1/products/datacatalog/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/datacatalog/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/datafusion/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/datafusion/api.yaml -------------------------------------------------------------------------------- /mmv1/products/datafusion/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/datafusion/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/dataproc/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/dataproc/api.yaml -------------------------------------------------------------------------------- /mmv1/products/dataproc/inspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/dataproc/inspec.yaml -------------------------------------------------------------------------------- /mmv1/products/dataproc/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/dataproc/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/datastore/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/datastore/api.yaml -------------------------------------------------------------------------------- /mmv1/products/datastore/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/datastore/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/deploymentmanager/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/deploymentmanager/api.yaml -------------------------------------------------------------------------------- /mmv1/products/deploymentmanager/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/deploymentmanager/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/dialogflow/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/dialogflow/api.yaml -------------------------------------------------------------------------------- /mmv1/products/dialogflow/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/dialogflow/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/dialogflowcx/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/dialogflowcx/api.yaml -------------------------------------------------------------------------------- /mmv1/products/dialogflowcx/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/dialogflowcx/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/dlp/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/dlp/api.yaml -------------------------------------------------------------------------------- /mmv1/products/dlp/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/dlp/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/dns/ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/dns/ansible.yaml -------------------------------------------------------------------------------- /mmv1/products/dns/ansible_version_added.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/dns/ansible_version_added.yaml -------------------------------------------------------------------------------- /mmv1/products/dns/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/dns/api.yaml -------------------------------------------------------------------------------- /mmv1/products/dns/examples/ansible/managed_zone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/dns/examples/ansible/managed_zone.yaml -------------------------------------------------------------------------------- /mmv1/products/dns/inspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/dns/inspec.yaml -------------------------------------------------------------------------------- /mmv1/products/dns/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/dns/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/documentai/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/documentai/api.yaml -------------------------------------------------------------------------------- /mmv1/products/documentai/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/documentai/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/essentialcontacts/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/essentialcontacts/api.yaml -------------------------------------------------------------------------------- /mmv1/products/essentialcontacts/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/essentialcontacts/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/filestore/ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/filestore/ansible.yaml -------------------------------------------------------------------------------- /mmv1/products/filestore/ansible_version_added.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/filestore/ansible_version_added.yaml -------------------------------------------------------------------------------- /mmv1/products/filestore/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/filestore/api.yaml -------------------------------------------------------------------------------- /mmv1/products/filestore/examples/ansible/instance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/filestore/examples/ansible/instance.yaml -------------------------------------------------------------------------------- /mmv1/products/filestore/inspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/filestore/inspec.yaml -------------------------------------------------------------------------------- /mmv1/products/filestore/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/filestore/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/firebase/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/firebase/api.yaml -------------------------------------------------------------------------------- /mmv1/products/firebase/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/firebase/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/firestore/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/firestore/api.yaml -------------------------------------------------------------------------------- /mmv1/products/firestore/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/firestore/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/gameservices/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/gameservices/api.yaml -------------------------------------------------------------------------------- /mmv1/products/gameservices/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/gameservices/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/gkehub/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/gkehub/api.yaml -------------------------------------------------------------------------------- /mmv1/products/gkehub/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/gkehub/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/healthcare/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/healthcare/api.yaml -------------------------------------------------------------------------------- /mmv1/products/healthcare/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/healthcare/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/iam/ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/iam/ansible.yaml -------------------------------------------------------------------------------- /mmv1/products/iam/ansible_version_added.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/iam/ansible_version_added.yaml -------------------------------------------------------------------------------- /mmv1/products/iam/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/iam/api.yaml -------------------------------------------------------------------------------- /mmv1/products/iam/examples/ansible/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/iam/examples/ansible/role.yaml -------------------------------------------------------------------------------- /mmv1/products/iam/helpers/python/provider_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/iam/helpers/python/provider_role.py -------------------------------------------------------------------------------- /mmv1/products/iam/inspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/iam/inspec.yaml -------------------------------------------------------------------------------- /mmv1/products/iam2/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/iam2/api.yaml -------------------------------------------------------------------------------- /mmv1/products/iam2/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/iam2/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/iambeta/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/iambeta/api.yaml -------------------------------------------------------------------------------- /mmv1/products/iambeta/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/iambeta/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/iap/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/iap/api.yaml -------------------------------------------------------------------------------- /mmv1/products/iap/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/iap/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/identityplatform/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/identityplatform/api.yaml -------------------------------------------------------------------------------- /mmv1/products/identityplatform/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/identityplatform/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/kms/ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/kms/ansible.yaml -------------------------------------------------------------------------------- /mmv1/products/kms/ansible_version_added.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/kms/ansible_version_added.yaml -------------------------------------------------------------------------------- /mmv1/products/kms/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/kms/api.yaml -------------------------------------------------------------------------------- /mmv1/products/kms/examples/ansible/crypto_key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/kms/examples/ansible/crypto_key.yaml -------------------------------------------------------------------------------- /mmv1/products/kms/examples/ansible/key_ring.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/kms/examples/ansible/key_ring.yaml -------------------------------------------------------------------------------- /mmv1/products/kms/helpers/python/crypto_key_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/kms/helpers/python/crypto_key_test.yaml -------------------------------------------------------------------------------- /mmv1/products/kms/helpers/python/key_ring_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/kms/helpers/python/key_ring_test.yaml -------------------------------------------------------------------------------- /mmv1/products/kms/helpers/python/provider_key_ring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/kms/helpers/python/provider_key_ring.py -------------------------------------------------------------------------------- /mmv1/products/kms/inspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/kms/inspec.yaml -------------------------------------------------------------------------------- /mmv1/products/kms/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/kms/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/logging/ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/logging/ansible.yaml -------------------------------------------------------------------------------- /mmv1/products/logging/ansible_version_added.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/logging/ansible_version_added.yaml -------------------------------------------------------------------------------- /mmv1/products/logging/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/logging/api.yaml -------------------------------------------------------------------------------- /mmv1/products/logging/examples/ansible/metric.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/logging/examples/ansible/metric.yaml -------------------------------------------------------------------------------- /mmv1/products/logging/inspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/logging/inspec.yaml -------------------------------------------------------------------------------- /mmv1/products/logging/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/logging/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/memcache/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/memcache/api.yaml -------------------------------------------------------------------------------- /mmv1/products/memcache/inspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/memcache/inspec.yaml -------------------------------------------------------------------------------- /mmv1/products/memcache/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/memcache/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/metastore/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/metastore/api.yaml -------------------------------------------------------------------------------- /mmv1/products/metastore/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/metastore/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/mlengine/ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/mlengine/ansible.yaml -------------------------------------------------------------------------------- /mmv1/products/mlengine/ansible_version_added.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/mlengine/ansible_version_added.yaml -------------------------------------------------------------------------------- /mmv1/products/mlengine/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/mlengine/api.yaml -------------------------------------------------------------------------------- /mmv1/products/mlengine/examples/ansible/model.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/mlengine/examples/ansible/model.yaml -------------------------------------------------------------------------------- /mmv1/products/mlengine/examples/ansible/version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/mlengine/examples/ansible/version.yaml -------------------------------------------------------------------------------- /mmv1/products/mlengine/inspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/mlengine/inspec.yaml -------------------------------------------------------------------------------- /mmv1/products/mlengine/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/mlengine/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/monitoring/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/monitoring/api.yaml -------------------------------------------------------------------------------- /mmv1/products/monitoring/inspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/monitoring/inspec.yaml -------------------------------------------------------------------------------- /mmv1/products/monitoring/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/monitoring/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/networkmanagement/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/networkmanagement/api.yaml -------------------------------------------------------------------------------- /mmv1/products/networkmanagement/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/networkmanagement/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/networkservices/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/networkservices/api.yaml -------------------------------------------------------------------------------- /mmv1/products/networkservices/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/networkservices/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/notebooks/README.md -------------------------------------------------------------------------------- /mmv1/products/notebooks/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/notebooks/api.yaml -------------------------------------------------------------------------------- /mmv1/products/notebooks/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/notebooks/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/osconfig/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/osconfig/api.yaml -------------------------------------------------------------------------------- /mmv1/products/osconfig/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/osconfig/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/oslogin/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/oslogin/api.yaml -------------------------------------------------------------------------------- /mmv1/products/oslogin/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/oslogin/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/privateca/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/privateca/api.yaml -------------------------------------------------------------------------------- /mmv1/products/privateca/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/privateca/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/pubsub/ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/pubsub/ansible.yaml -------------------------------------------------------------------------------- /mmv1/products/pubsub/ansible_version_added.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/pubsub/ansible_version_added.yaml -------------------------------------------------------------------------------- /mmv1/products/pubsub/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/pubsub/api.yaml -------------------------------------------------------------------------------- /mmv1/products/pubsub/example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/pubsub/example.yaml -------------------------------------------------------------------------------- /mmv1/products/pubsub/examples/ansible/topic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/pubsub/examples/ansible/topic.yaml -------------------------------------------------------------------------------- /mmv1/products/pubsub/inspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/pubsub/inspec.yaml -------------------------------------------------------------------------------- /mmv1/products/pubsub/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/pubsub/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/pubsub/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/pubsub/test.yaml -------------------------------------------------------------------------------- /mmv1/products/pubsublite/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/pubsublite/api.yaml -------------------------------------------------------------------------------- /mmv1/products/pubsublite/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/pubsublite/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/redis/ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/redis/ansible.yaml -------------------------------------------------------------------------------- /mmv1/products/redis/ansible_version_added.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/redis/ansible_version_added.yaml -------------------------------------------------------------------------------- /mmv1/products/redis/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/redis/api.yaml -------------------------------------------------------------------------------- /mmv1/products/redis/examples/ansible/instance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/redis/examples/ansible/instance.yaml -------------------------------------------------------------------------------- /mmv1/products/redis/inspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/redis/inspec.yaml -------------------------------------------------------------------------------- /mmv1/products/redis/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/redis/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/resourcemanager/ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/resourcemanager/ansible.yaml -------------------------------------------------------------------------------- /mmv1/products/resourcemanager/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/resourcemanager/api.yaml -------------------------------------------------------------------------------- /mmv1/products/resourcemanager/inspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/resourcemanager/inspec.yaml -------------------------------------------------------------------------------- /mmv1/products/resourcemanager/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/resourcemanager/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/runtimeconfig/ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/runtimeconfig/ansible.yaml -------------------------------------------------------------------------------- /mmv1/products/runtimeconfig/ansible_version_added.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/runtimeconfig/ansible_version_added.yaml -------------------------------------------------------------------------------- /mmv1/products/runtimeconfig/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/runtimeconfig/api.yaml -------------------------------------------------------------------------------- /mmv1/products/runtimeconfig/inspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/runtimeconfig/inspec.yaml -------------------------------------------------------------------------------- /mmv1/products/runtimeconfig/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/runtimeconfig/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/secretmanager/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/secretmanager/api.yaml -------------------------------------------------------------------------------- /mmv1/products/secretmanager/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/secretmanager/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/securitycenter/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/securitycenter/api.yaml -------------------------------------------------------------------------------- /mmv1/products/securitycenter/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/securitycenter/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/securityscanner/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/securityscanner/api.yaml -------------------------------------------------------------------------------- /mmv1/products/securityscanner/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/securityscanner/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/servicedirectory/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/servicedirectory/api.yaml -------------------------------------------------------------------------------- /mmv1/products/servicedirectory/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/servicedirectory/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/servicemanagement/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/servicemanagement/api.yaml -------------------------------------------------------------------------------- /mmv1/products/servicemanagement/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/servicemanagement/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/serviceusage/ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/serviceusage/ansible.yaml -------------------------------------------------------------------------------- /mmv1/products/serviceusage/ansible_version_added.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/serviceusage/ansible_version_added.yaml -------------------------------------------------------------------------------- /mmv1/products/serviceusage/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/serviceusage/api.yaml -------------------------------------------------------------------------------- /mmv1/products/serviceusage/inspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/serviceusage/inspec.yaml -------------------------------------------------------------------------------- /mmv1/products/serviceusage/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/serviceusage/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/sourcerepo/ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/sourcerepo/ansible.yaml -------------------------------------------------------------------------------- /mmv1/products/sourcerepo/ansible_version_added.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/sourcerepo/ansible_version_added.yaml -------------------------------------------------------------------------------- /mmv1/products/sourcerepo/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/sourcerepo/api.yaml -------------------------------------------------------------------------------- /mmv1/products/sourcerepo/inspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/sourcerepo/inspec.yaml -------------------------------------------------------------------------------- /mmv1/products/sourcerepo/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/sourcerepo/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/spanner/ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/spanner/ansible.yaml -------------------------------------------------------------------------------- /mmv1/products/spanner/ansible_version_added.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/spanner/ansible_version_added.yaml -------------------------------------------------------------------------------- /mmv1/products/spanner/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/spanner/api.yaml -------------------------------------------------------------------------------- /mmv1/products/spanner/async.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/spanner/async.yaml -------------------------------------------------------------------------------- /mmv1/products/spanner/examples/ansible/database.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/spanner/examples/ansible/database.yaml -------------------------------------------------------------------------------- /mmv1/products/spanner/examples/ansible/instance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/spanner/examples/ansible/instance.yaml -------------------------------------------------------------------------------- /mmv1/products/spanner/inspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/spanner/inspec.yaml -------------------------------------------------------------------------------- /mmv1/products/spanner/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/spanner/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/spanner/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/spanner/test.yaml -------------------------------------------------------------------------------- /mmv1/products/sql/ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/sql/ansible.yaml -------------------------------------------------------------------------------- /mmv1/products/sql/ansible_version_added.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/sql/ansible_version_added.yaml -------------------------------------------------------------------------------- /mmv1/products/sql/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/sql/api.yaml -------------------------------------------------------------------------------- /mmv1/products/sql/examples/ansible/database.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/sql/examples/ansible/database.yaml -------------------------------------------------------------------------------- /mmv1/products/sql/examples/ansible/instance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/sql/examples/ansible/instance.yaml -------------------------------------------------------------------------------- /mmv1/products/sql/examples/ansible/ssl_cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/sql/examples/ansible/ssl_cert.yaml -------------------------------------------------------------------------------- /mmv1/products/sql/examples/ansible/user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/sql/examples/ansible/user.yaml -------------------------------------------------------------------------------- /mmv1/products/sql/helpers/ansible/return_if_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/sql/helpers/ansible/return_if_object.py -------------------------------------------------------------------------------- /mmv1/products/sql/inspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/sql/inspec.yaml -------------------------------------------------------------------------------- /mmv1/products/sql/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/sql/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/storage/ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/storage/ansible.yaml -------------------------------------------------------------------------------- /mmv1/products/storage/ansible_version_added.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/storage/ansible_version_added.yaml -------------------------------------------------------------------------------- /mmv1/products/storage/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/storage/api.yaml -------------------------------------------------------------------------------- /mmv1/products/storage/examples/ansible/bucket.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/storage/examples/ansible/bucket.yaml -------------------------------------------------------------------------------- /mmv1/products/storage/examples/ansible/object.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/storage/examples/ansible/object.yaml -------------------------------------------------------------------------------- /mmv1/products/storage/inspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/storage/inspec.yaml -------------------------------------------------------------------------------- /mmv1/products/storage/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/storage/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/tags/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/tags/api.yaml -------------------------------------------------------------------------------- /mmv1/products/tags/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/tags/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/tpu/ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/tpu/ansible.yaml -------------------------------------------------------------------------------- /mmv1/products/tpu/ansible_version_added.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/tpu/ansible_version_added.yaml -------------------------------------------------------------------------------- /mmv1/products/tpu/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/tpu/api.yaml -------------------------------------------------------------------------------- /mmv1/products/tpu/examples/ansible/node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/tpu/examples/ansible/node.yaml -------------------------------------------------------------------------------- /mmv1/products/tpu/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/tpu/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/vertexai/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/vertexai/api.yaml -------------------------------------------------------------------------------- /mmv1/products/vertexai/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/vertexai/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/vpcaccess/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/vpcaccess/api.yaml -------------------------------------------------------------------------------- /mmv1/products/vpcaccess/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/vpcaccess/terraform.yaml -------------------------------------------------------------------------------- /mmv1/products/workflows/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/workflows/api.yaml -------------------------------------------------------------------------------- /mmv1/products/workflows/terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/products/workflows/terraform.yaml -------------------------------------------------------------------------------- /mmv1/provider/abstract_core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/abstract_core.rb -------------------------------------------------------------------------------- /mmv1/provider/ansible.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/ansible.rb -------------------------------------------------------------------------------- /mmv1/provider/ansible/blank_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/ansible/blank_file.yaml -------------------------------------------------------------------------------- /mmv1/provider/ansible/common~compile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/ansible/common~compile.yaml -------------------------------------------------------------------------------- /mmv1/provider/ansible/common~copy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/ansible/common~copy.yaml -------------------------------------------------------------------------------- /mmv1/provider/ansible/common~copy~devel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/ansible/common~copy~devel.yaml -------------------------------------------------------------------------------- /mmv1/provider/ansible/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/ansible/config.rb -------------------------------------------------------------------------------- /mmv1/provider/ansible/custom_code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/ansible/custom_code.rb -------------------------------------------------------------------------------- /mmv1/provider/ansible/documentation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/ansible/documentation.rb -------------------------------------------------------------------------------- /mmv1/provider/ansible/example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/ansible/example.rb -------------------------------------------------------------------------------- /mmv1/provider/ansible/facts_override.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/ansible/facts_override.rb -------------------------------------------------------------------------------- /mmv1/provider/ansible/gcp_integration_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/ansible/gcp_integration_runner.py -------------------------------------------------------------------------------- /mmv1/provider/ansible/gcp_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/ansible/gcp_utils.py -------------------------------------------------------------------------------- /mmv1/provider/ansible/module.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/ansible/module.rb -------------------------------------------------------------------------------- /mmv1/provider/ansible/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/ansible/request.rb -------------------------------------------------------------------------------- /mmv1/provider/ansible/resourceref.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/ansible/resourceref.rb -------------------------------------------------------------------------------- /mmv1/provider/ansible/resource~compile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/ansible/resource~compile.yaml -------------------------------------------------------------------------------- /mmv1/provider/ansible/resource~compile~devel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/ansible/resource~compile~devel.yaml -------------------------------------------------------------------------------- /mmv1/provider/ansible/test_gcp_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/ansible/test_gcp_session.py -------------------------------------------------------------------------------- /mmv1/provider/ansible/test_gcp_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/ansible/test_gcp_utils.py -------------------------------------------------------------------------------- /mmv1/provider/ansible/test_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/ansible/test_template.yaml -------------------------------------------------------------------------------- /mmv1/provider/ansible/tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/ansible/tests.rb -------------------------------------------------------------------------------- /mmv1/provider/ansible/version_added.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/ansible/version_added.rb -------------------------------------------------------------------------------- /mmv1/provider/ansible_devel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/ansible_devel.rb -------------------------------------------------------------------------------- /mmv1/provider/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/config.rb -------------------------------------------------------------------------------- /mmv1/provider/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/core.rb -------------------------------------------------------------------------------- /mmv1/provider/file_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/file_template.rb -------------------------------------------------------------------------------- /mmv1/provider/inspec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/inspec.rb -------------------------------------------------------------------------------- /mmv1/provider/inspec/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/inspec/Gemfile -------------------------------------------------------------------------------- /mmv1/provider/inspec/common~copy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/inspec/common~copy.yaml -------------------------------------------------------------------------------- /mmv1/provider/terraform.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/terraform.rb -------------------------------------------------------------------------------- /mmv1/provider/terraform/async.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/terraform/async.rb -------------------------------------------------------------------------------- /mmv1/provider/terraform/common~compile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/terraform/common~compile.yaml -------------------------------------------------------------------------------- /mmv1/provider/terraform/common~copy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/terraform/common~copy.yaml -------------------------------------------------------------------------------- /mmv1/provider/terraform/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/terraform/config.rb -------------------------------------------------------------------------------- /mmv1/provider/terraform/custom_code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/terraform/custom_code.rb -------------------------------------------------------------------------------- /mmv1/provider/terraform/docs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/terraform/docs.rb -------------------------------------------------------------------------------- /mmv1/provider/terraform/examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/terraform/examples.rb -------------------------------------------------------------------------------- /mmv1/provider/terraform/import.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/terraform/import.rb -------------------------------------------------------------------------------- /mmv1/provider/terraform/product~compile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/terraform/product~compile.yaml -------------------------------------------------------------------------------- /mmv1/provider/terraform/sub_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/terraform/sub_template.rb -------------------------------------------------------------------------------- /mmv1/provider/terraform/virtual_fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/terraform/virtual_fields.rb -------------------------------------------------------------------------------- /mmv1/provider/terraform_cloud_docs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/terraform_cloud_docs.rb -------------------------------------------------------------------------------- /mmv1/provider/terraform_oics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/terraform_oics.rb -------------------------------------------------------------------------------- /mmv1/provider/terraform_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/provider/terraform_validator.rb -------------------------------------------------------------------------------- /mmv1/spec/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/.rubocop.yml -------------------------------------------------------------------------------- /mmv1/spec/compiler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/compiler_spec.rb -------------------------------------------------------------------------------- /mmv1/spec/copyright.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/copyright.rb -------------------------------------------------------------------------------- /mmv1/spec/copyright_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/copyright_spec.rb -------------------------------------------------------------------------------- /mmv1/spec/data/bad-property-reference-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/data/bad-property-reference-config.yaml -------------------------------------------------------------------------------- /mmv1/spec/data/copyright_bad1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/data/copyright_bad1.rb -------------------------------------------------------------------------------- /mmv1/spec/data/copyright_bad2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/data/copyright_bad2.rb -------------------------------------------------------------------------------- /mmv1/spec/data/copyright_good1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/data/copyright_good1.rb -------------------------------------------------------------------------------- /mmv1/spec/data/copyright_good2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/data/copyright_good2.rb -------------------------------------------------------------------------------- /mmv1/spec/data/good-export-file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/data/good-export-file.yaml -------------------------------------------------------------------------------- /mmv1/spec/data/good-file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/data/good-file.yaml -------------------------------------------------------------------------------- /mmv1/spec/data/good-longuri.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/data/good-longuri.yaml -------------------------------------------------------------------------------- /mmv1/spec/data/good-multi-file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/data/good-multi-file.yaml -------------------------------------------------------------------------------- /mmv1/spec/data/good-multi2-file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/data/good-multi2-file.yaml -------------------------------------------------------------------------------- /mmv1/spec/data/good-resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/data/good-resource.yaml -------------------------------------------------------------------------------- /mmv1/spec/data/good-single-file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/data/good-single-file.yaml -------------------------------------------------------------------------------- /mmv1/spec/data/good-single-readonly-file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/data/good-single-readonly-file.yaml -------------------------------------------------------------------------------- /mmv1/spec/data/good-tf-override.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/data/good-tf-override.yaml -------------------------------------------------------------------------------- /mmv1/spec/data/resourceref-missingimports.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/data/resourceref-missingimports.yaml -------------------------------------------------------------------------------- /mmv1/spec/data/resourceref-missingresource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/data/resourceref-missingresource.yaml -------------------------------------------------------------------------------- /mmv1/spec/data/terraform-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/data/terraform-config.yaml -------------------------------------------------------------------------------- /mmv1/spec/google_golang_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/google_golang_spec.rb -------------------------------------------------------------------------------- /mmv1/spec/google_python_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/google_python_spec.rb -------------------------------------------------------------------------------- /mmv1/spec/object_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/object_spec.rb -------------------------------------------------------------------------------- /mmv1/spec/override_runner_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/override_runner_spec.rb -------------------------------------------------------------------------------- /mmv1/spec/override_validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/override_validator_spec.rb -------------------------------------------------------------------------------- /mmv1/spec/product_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/product_spec.rb -------------------------------------------------------------------------------- /mmv1/spec/provider_terraform_import_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/provider_terraform_import_spec.rb -------------------------------------------------------------------------------- /mmv1/spec/provider_terraform_resource_override_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/provider_terraform_resource_override_spec.rb -------------------------------------------------------------------------------- /mmv1/spec/provider_terraform_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/provider_terraform_spec.rb -------------------------------------------------------------------------------- /mmv1/spec/resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/resource_spec.rb -------------------------------------------------------------------------------- /mmv1/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/spec_helper.rb -------------------------------------------------------------------------------- /mmv1/spec/string_utils_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/string_utils_spec.rb -------------------------------------------------------------------------------- /mmv1/spec/type_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/type_spec.rb -------------------------------------------------------------------------------- /mmv1/spec/yaml_validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/spec/yaml_validator_spec.rb -------------------------------------------------------------------------------- /mmv1/templates/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/LICENSE -------------------------------------------------------------------------------- /mmv1/templates/ansible/README.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/ansible/README.md.erb -------------------------------------------------------------------------------- /mmv1/templates/ansible/aliases: -------------------------------------------------------------------------------- 1 | <% autogen_exception -%> 2 | cloud/gcp 3 | unsupported 4 | -------------------------------------------------------------------------------- /mmv1/templates/ansible/async.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/ansible/async.erb -------------------------------------------------------------------------------- /mmv1/templates/ansible/documentation.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/ansible/documentation.erb -------------------------------------------------------------------------------- /mmv1/templates/ansible/facts.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/ansible/facts.erb -------------------------------------------------------------------------------- /mmv1/templates/ansible/integration_test.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/ansible/integration_test.erb -------------------------------------------------------------------------------- /mmv1/templates/ansible/integration_test_variables.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/ansible/integration_test_variables.erb -------------------------------------------------------------------------------- /mmv1/templates/ansible/module.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/ansible/module.erb -------------------------------------------------------------------------------- /mmv1/templates/ansible/pattern.py.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/ansible/pattern.py.erb -------------------------------------------------------------------------------- /mmv1/templates/ansible/properties.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/ansible/properties.erb -------------------------------------------------------------------------------- /mmv1/templates/ansible/provider_helpers.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/ansible/provider_helpers.erb -------------------------------------------------------------------------------- /mmv1/templates/ansible/resource.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/ansible/resource.erb -------------------------------------------------------------------------------- /mmv1/templates/ansible/tests_main.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/ansible/tests_main.erb -------------------------------------------------------------------------------- /mmv1/templates/ansible/transport.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/ansible/transport.erb -------------------------------------------------------------------------------- /mmv1/templates/ansible/update_mask.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/ansible/update_mask.erb -------------------------------------------------------------------------------- /mmv1/templates/ansible/verifiers/bash.yaml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/ansible/verifiers/bash.yaml.erb -------------------------------------------------------------------------------- /mmv1/templates/ansible/verifiers/facts.yaml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/ansible/verifiers/facts.yaml.erb -------------------------------------------------------------------------------- /mmv1/templates/async.yaml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/async.yaml.erb -------------------------------------------------------------------------------- /mmv1/templates/autogen_notice.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/autogen_notice.erb -------------------------------------------------------------------------------- /mmv1/templates/inspec/doc_template.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/inspec/doc_template.md.erb -------------------------------------------------------------------------------- /mmv1/templates/inspec/iam_binding/iam_binding.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/inspec/iam_binding/iam_binding.erb -------------------------------------------------------------------------------- /mmv1/templates/inspec/iam_binding/iam_binding.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/inspec/iam_binding/iam_binding.md.erb -------------------------------------------------------------------------------- /mmv1/templates/inspec/iam_policy/iam_policy.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/inspec/iam_policy/iam_policy.erb -------------------------------------------------------------------------------- /mmv1/templates/inspec/iam_policy/iam_policy.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/inspec/iam_policy/iam_policy.md.erb -------------------------------------------------------------------------------- /mmv1/templates/inspec/integration_test_template.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/inspec/integration_test_template.erb -------------------------------------------------------------------------------- /mmv1/templates/inspec/nested_object.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/inspec/nested_object.erb -------------------------------------------------------------------------------- /mmv1/templates/inspec/plural_resource.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/inspec/plural_resource.erb -------------------------------------------------------------------------------- /mmv1/templates/inspec/product_url.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/inspec/product_url.erb -------------------------------------------------------------------------------- /mmv1/templates/inspec/singular_resource.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/inspec/singular_resource.erb -------------------------------------------------------------------------------- /mmv1/templates/inspec/vcr_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/inspec/vcr_config.rb -------------------------------------------------------------------------------- /mmv1/templates/license.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/license.erb -------------------------------------------------------------------------------- /mmv1/templates/stackdriver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/stackdriver.json -------------------------------------------------------------------------------- /mmv1/templates/terraform/constants/bigquery_job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/constants/bigquery_job.go -------------------------------------------------------------------------------- /mmv1/templates/terraform/constants/billing_budget.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/constants/billing_budget.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/constants/cert_manager.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/constants/cert_manager.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/constants/cloudiot.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/constants/cloudiot.go.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/constants/disk.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/constants/disk.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/constants/domain_mapping.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/constants/domain_mapping.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/constants/filestore.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/constants/filestore.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/constants/firewall.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/constants/firewall.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/constants/health_check.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/constants/health_check.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/constants/redis_instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/constants/redis_instance.go -------------------------------------------------------------------------------- /mmv1/templates/terraform/constants/router.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/constants/router.go.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/constants/router_nat.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/constants/router_nat.go.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/constants/scheduler.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/constants/scheduler.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/constants/ssl_policy.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/constants/ssl_policy.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/constants/subnetwork.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/constants/subnetwork.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/constants/subscription.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/constants/subscription.go.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/constants/tpu_node.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/constants/tpu_node.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/constants/vpn_tunnel.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/constants/vpn_tunnel.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/custom_expand/base64.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/custom_expand/base64.go.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/custom_expand/json_schema.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/custom_expand/json_schema.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/custom_expand/sd_full_url.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/custom_expand/sd_full_url.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/custom_expand/set_to_list.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/custom_expand/set_to_list.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/custom_flatten/sha256.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/custom_flatten/sha256.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/decoders/cloud_run.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/decoders/cloud_run.go.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/decoders/disk.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/decoders/disk.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/decoders/kms.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/decoders/kms.go.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/decoders/noop.go.erb: -------------------------------------------------------------------------------- 1 | return res, nil 2 | -------------------------------------------------------------------------------- /mmv1/templates/terraform/decoders/route.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/decoders/route.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/decoders/snapshot.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/decoders/snapshot.go.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/encoders/api_config.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/encoders/api_config.go.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/encoders/apigee_organization.go.erb: -------------------------------------------------------------------------------- 1 | obj["name"] = d.Get("project_id").(string) 2 | return obj, nil 3 | -------------------------------------------------------------------------------- /mmv1/templates/terraform/encoders/bigquery_job.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/encoders/bigquery_job.go.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/encoders/disk.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/encoders/disk.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/encoders/flex_app_version.go.erb: -------------------------------------------------------------------------------- 1 | obj["env"] = "flex" 2 | return obj, nil -------------------------------------------------------------------------------- /mmv1/templates/terraform/encoders/index.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/encoders/index.go.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/encoders/no_send_name.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/encoders/no_send_name.go.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/encoders/pubsub_lite.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/encoders/pubsub_lite.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/encoders/send_nil_body.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/encoders/send_nil_body.go.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/encoders/vpn_tunnel.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/encoders/vpn_tunnel.go.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/encoders/workflow.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/encoders/workflow.go.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/encoders/wrap_object.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/encoders/wrap_object.go.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/env_var_context.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/env_var_context.go.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/examples/address_basic.tf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/examples/address_basic.tf.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/examples/base_configs/documentation.tf.erb: -------------------------------------------------------------------------------- 1 | ```hcl 2 | <%= ctx[:content] -%> 3 | ``` 4 | -------------------------------------------------------------------------------- /mmv1/templates/terraform/examples/disk_basic.tf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/examples/disk_basic.tf.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/examples/endpoints_iam.tf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/examples/endpoints_iam.tf.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/examples/iap_appengine.tf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/examples/iap_appengine.tf.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/examples/iap_brand.tf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/examples/iap_brand.tf.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/examples/iap_client.tf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/examples/iap_client.tf.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/examples/iap_project.tf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/examples/iap_project.tf.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/examples/image_basic.tf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/examples/image_basic.tf.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/examples/ml_model_full.tf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/examples/ml_model_full.tf.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/examples/os_login.tf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/examples/os_login.tf.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/examples/route_ilb.tf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/examples/route_ilb.tf.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/examples/static/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/examples/static/motd -------------------------------------------------------------------------------- /mmv1/templates/terraform/expand_property_method.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/expand_property_method.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/expand_resource_ref.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/expand_resource_ref.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/iam/iam_attributes.tf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/iam/iam_attributes.tf.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/iam/iam_context.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/iam/iam_context.go.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/iam_policy.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/iam_policy.go.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/nested_query.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/nested_query.go.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/operation.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/operation.go.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/post_create/group.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/post_create/group.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/post_create/index.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/post_create/index.go.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/post_create/labels.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/post_create/labels.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/post_create/lien.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/post_create/lien.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/post_create/sleep.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/post_create/sleep.go.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/pre_delete/detach_disk.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/pre_delete/detach_disk.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/property_documentation.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/property_documentation.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/resource.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/resource.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/resource.html.markdown.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/resource.html.markdown.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/schema_property.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/schema_property.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/schema_subresource.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/schema_subresource.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/self_link_query.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/self_link_query.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/sweeper_file.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/sweeper_file.go.erb -------------------------------------------------------------------------------- /mmv1/templates/terraform/update_mask.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/terraform/update_mask.erb -------------------------------------------------------------------------------- /mmv1/templates/validator/mappers/mappers.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/validator/mappers/mappers.go.erb -------------------------------------------------------------------------------- /mmv1/templates/validator/resource_converter.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/validator/resource_converter.go.erb -------------------------------------------------------------------------------- /mmv1/templates/validator/resource_converters.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/templates/validator/resource_converters.go.erb -------------------------------------------------------------------------------- /mmv1/third_party/terraform/.goreleaser.yml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/.goreleaser.yml.erb -------------------------------------------------------------------------------- /mmv1/third_party/terraform/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/LICENSE -------------------------------------------------------------------------------- /mmv1/third_party/terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/README.md -------------------------------------------------------------------------------- /mmv1/third_party/terraform/go.mod.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/go.mod.erb -------------------------------------------------------------------------------- /mmv1/third_party/terraform/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/go.sum -------------------------------------------------------------------------------- /mmv1/third_party/terraform/main.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/main.go.erb -------------------------------------------------------------------------------- /mmv1/third_party/terraform/release-metadata.hcl.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/release-metadata.hcl.erb -------------------------------------------------------------------------------- /mmv1/third_party/terraform/scripts/diff.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/scripts/diff.go.erb -------------------------------------------------------------------------------- /mmv1/third_party/terraform/scripts/gofmtcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/scripts/gofmtcheck.sh -------------------------------------------------------------------------------- /mmv1/third_party/terraform/scripts/gogetcookie.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/scripts/gogetcookie.sh -------------------------------------------------------------------------------- /mmv1/third_party/terraform/scripts/run_diff.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/scripts/run_diff.sh.erb -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/batcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/batcher.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/batcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/batcher_test.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/common_polling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/common_polling.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/config.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/config.go.erb -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/config_test.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/convert.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/convert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/convert_test.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/disk_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/disk_type.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/dns_change.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/dns_change.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/field_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/field_helpers.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/hashcode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/hashcode.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/iam.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/iam.go.erb -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/iam_batching.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/iam_batching.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/iam_folder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/iam_folder.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/iam_project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/iam_project.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/iam_test.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/iam_test.go.erb -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/image.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/import.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/import_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/import_test.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/kms_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/kms_utils.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/logging_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/logging_utils.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/metadata.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/metadata.go.erb -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/mtls_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/mtls_util.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/mtls_util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/mtls_util_test.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/mutexkv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/mutexkv.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/node_config.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/node_config.go.erb -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/privateca_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/privateca_utils.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/provider.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/provider.go.erb -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/pubsub_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/pubsub_utils.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/regional_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/regional_utils.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/retry_transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/retry_transport.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/retry_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/retry_utils.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/service_scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/service_scope.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/sql_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/sql_utils.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/state_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/state_util.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/test-fixtures/appengine/hello-world-flask/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==1.1.1 2 | gunicorn==20.0.4 -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/test-fixtures/dlp/words.txt: -------------------------------------------------------------------------------- 1 | word 2 | word2 3 | custom -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/test_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/test_utils.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/transport.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/transport.go.erb -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/transport_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/transport_test.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/utils.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/utils_test.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/validation.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/utils/validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/utils/validation_test.go -------------------------------------------------------------------------------- /mmv1/third_party/terraform/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/terraform/version/version.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/bigquery_dataset_iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/bigquery_dataset_iam.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/bigquery_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/bigquery_table.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/bigtable_cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/bigtable_cluster.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/bigtable_instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/bigtable_instance.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/cai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/cai.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/cai_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/cai_test.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/compute_instance.go.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/compute_instance.go.erb -------------------------------------------------------------------------------- /mmv1/third_party/validator/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/constants.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/container.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/dcl.go: -------------------------------------------------------------------------------- 1 | package google 2 | 3 | type DCLConfig struct{} 4 | -------------------------------------------------------------------------------- /mmv1/third_party/validator/folder_iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/folder_iam.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/getconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/getconfig.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/getconfig_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/getconfig_test.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/iam_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/iam_helpers.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/iam_helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/iam_helpers_test.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/json_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/json_map.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/kms_crypto_key_iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/kms_crypto_key_iam.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/kms_key_ring_iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/kms_key_ring_iam.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/monitoring_slo_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/monitoring_slo_helper.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/organization_iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/organization_iam.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/organization_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/organization_policy.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/project.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/project_iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/project_iam.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/project_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/project_service.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/project_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/project_service_test.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/spanner_database_iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/spanner_database_iam.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/spanner_instance_iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/spanner_instance_iam.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/sql_database_instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/sql_database_instance.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/storage_bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/storage_bucket.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/storage_bucket_iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/storage_bucket_iam.go -------------------------------------------------------------------------------- /mmv1/third_party/validator/tests/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mmv1/third_party/validator/tests/data/bucket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/tests/data/bucket.json -------------------------------------------------------------------------------- /mmv1/third_party/validator/tests/data/bucket.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/tests/data/bucket.tf -------------------------------------------------------------------------------- /mmv1/third_party/validator/tests/data/disk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/tests/data/disk.json -------------------------------------------------------------------------------- /mmv1/third_party/validator/tests/data/disk.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/tests/data/disk.tf -------------------------------------------------------------------------------- /mmv1/third_party/validator/tests/data/firewall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/tests/data/firewall.json -------------------------------------------------------------------------------- /mmv1/third_party/validator/tests/data/firewall.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/tests/data/firewall.tf -------------------------------------------------------------------------------- /mmv1/third_party/validator/tests/data/instance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/tests/data/instance.json -------------------------------------------------------------------------------- /mmv1/third_party/validator/tests/data/instance.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/tests/data/instance.tf -------------------------------------------------------------------------------- /mmv1/third_party/validator/tests/data/sql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/tests/data/sql.json -------------------------------------------------------------------------------- /mmv1/third_party/validator/tests/data/sql.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/third_party/validator/tests/data/sql.tf -------------------------------------------------------------------------------- /mmv1/tools/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/tools/bootstrap -------------------------------------------------------------------------------- /mmv1/tools/doctor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/mmv1/tools/doctor -------------------------------------------------------------------------------- /tpgtools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/README.md -------------------------------------------------------------------------------- /tpgtools/api/apikeys/samples/android.key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/apikeys/samples/android.key.json -------------------------------------------------------------------------------- /tpgtools/api/apikeys/samples/android_key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/apikeys/samples/android_key.yaml -------------------------------------------------------------------------------- /tpgtools/api/apikeys/samples/basic.key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/apikeys/samples/basic.key.json -------------------------------------------------------------------------------- /tpgtools/api/apikeys/samples/basic_key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/apikeys/samples/basic_key.yaml -------------------------------------------------------------------------------- /tpgtools/api/apikeys/samples/ios.key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/apikeys/samples/ios.key.json -------------------------------------------------------------------------------- /tpgtools/api/apikeys/samples/ios_key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/apikeys/samples/ios_key.yaml -------------------------------------------------------------------------------- /tpgtools/api/apikeys/samples/ios_update.key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/apikeys/samples/ios_update.key.json -------------------------------------------------------------------------------- /tpgtools/api/apikeys/samples/minimal.key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/apikeys/samples/minimal.key.json -------------------------------------------------------------------------------- /tpgtools/api/apikeys/samples/minimal_key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/apikeys/samples/minimal_key.yaml -------------------------------------------------------------------------------- /tpgtools/api/apikeys/samples/server.key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/apikeys/samples/server.key.json -------------------------------------------------------------------------------- /tpgtools/api/apikeys/samples/server_key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/apikeys/samples/server_key.yaml -------------------------------------------------------------------------------- /tpgtools/api/apikeys/samples/server_update.key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/apikeys/samples/server_update.key.json -------------------------------------------------------------------------------- /tpgtools/api/apikeys/samples/update.key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/apikeys/samples/update.key.json -------------------------------------------------------------------------------- /tpgtools/api/clouddeploy/samples/basic.target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/clouddeploy/samples/basic.target.json -------------------------------------------------------------------------------- /tpgtools/api/clouddeploy/samples/target.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/clouddeploy/samples/target.yaml -------------------------------------------------------------------------------- /tpgtools/api/clouddeploy/samples/update.target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/clouddeploy/samples/update.target.json -------------------------------------------------------------------------------- /tpgtools/api/dataplex/samples/basic.lake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/dataplex/samples/basic.lake.json -------------------------------------------------------------------------------- /tpgtools/api/dataplex/samples/basic.zone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/dataplex/samples/basic.zone.json -------------------------------------------------------------------------------- /tpgtools/api/dataplex/samples/basic_lake.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/dataplex/samples/basic_lake.yaml -------------------------------------------------------------------------------- /tpgtools/api/dataplex/samples/basic_zone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/dataplex/samples/basic_zone.yaml -------------------------------------------------------------------------------- /tpgtools/api/dataplex/samples/update.lake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/dataplex/samples/update.lake.json -------------------------------------------------------------------------------- /tpgtools/api/dataplex/samples/update.zone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/dataplex/samples/update.zone.json -------------------------------------------------------------------------------- /tpgtools/api/orgpolicy/samples/enforce.policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/orgpolicy/samples/enforce.policy.json -------------------------------------------------------------------------------- /tpgtools/api/orgpolicy/samples/enforce_policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/orgpolicy/samples/enforce_policy.yaml -------------------------------------------------------------------------------- /tpgtools/api/orgpolicy/samples/folder.policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/orgpolicy/samples/folder.policy.json -------------------------------------------------------------------------------- /tpgtools/api/orgpolicy/samples/folder_policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/orgpolicy/samples/folder_policy.yaml -------------------------------------------------------------------------------- /tpgtools/api/orgpolicy/samples/project.policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/orgpolicy/samples/project.policy.json -------------------------------------------------------------------------------- /tpgtools/api/orgpolicy/samples/project_policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/api/orgpolicy/samples/project_policy.yaml -------------------------------------------------------------------------------- /tpgtools/documentation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/documentation.go -------------------------------------------------------------------------------- /tpgtools/file_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/file_utils.go -------------------------------------------------------------------------------- /tpgtools/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/go.mod -------------------------------------------------------------------------------- /tpgtools/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/go.sum -------------------------------------------------------------------------------- /tpgtools/handwritten.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/handwritten.go -------------------------------------------------------------------------------- /tpgtools/handwritten/dcl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/handwritten/dcl.go -------------------------------------------------------------------------------- /tpgtools/handwritten/dcl_logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/handwritten/dcl_logger.go -------------------------------------------------------------------------------- /tpgtools/handwritten/expanders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/handwritten/expanders.go -------------------------------------------------------------------------------- /tpgtools/handwritten/flatteners.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/handwritten/flatteners.go -------------------------------------------------------------------------------- /tpgtools/handwritten/orgpolicy_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/handwritten/orgpolicy_utils.go -------------------------------------------------------------------------------- /tpgtools/handwritten/tpgtools_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/handwritten/tpgtools_utils.go -------------------------------------------------------------------------------- /tpgtools/id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/id.go -------------------------------------------------------------------------------- /tpgtools/ignored_handwritten/common_custom_diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/ignored_handwritten/common_custom_diff.go -------------------------------------------------------------------------------- /tpgtools/ignored_handwritten/common_set_hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/ignored_handwritten/common_set_hash.go -------------------------------------------------------------------------------- /tpgtools/ignored_handwritten/common_skip_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/ignored_handwritten/common_skip_delete.go -------------------------------------------------------------------------------- /tpgtools/ignored_handwritten/compute_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/ignored_handwritten/compute_utils.go -------------------------------------------------------------------------------- /tpgtools/ignored_handwritten/custom_import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/ignored_handwritten/custom_import.go -------------------------------------------------------------------------------- /tpgtools/ignored_handwritten/disk_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/ignored_handwritten/disk_utils.go -------------------------------------------------------------------------------- /tpgtools/ignored_handwritten/expanders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/ignored_handwritten/expanders.go -------------------------------------------------------------------------------- /tpgtools/ignored_handwritten/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/ignored_handwritten/go.mod -------------------------------------------------------------------------------- /tpgtools/ignored_handwritten/redis_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/ignored_handwritten/redis_utils.go -------------------------------------------------------------------------------- /tpgtools/ignored_handwritten/runtimeconfig_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/ignored_handwritten/runtimeconfig_utils.go -------------------------------------------------------------------------------- /tpgtools/ignored_handwritten/state_setters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/ignored_handwritten/state_setters.go -------------------------------------------------------------------------------- /tpgtools/ignored_handwritten/storage_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/ignored_handwritten/storage_utils.go -------------------------------------------------------------------------------- /tpgtools/ignored_handwritten/tpu_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/ignored_handwritten/tpu_utils.go -------------------------------------------------------------------------------- /tpgtools/ignored_handwritten/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/ignored_handwritten/validation.go -------------------------------------------------------------------------------- /tpgtools/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/main.go -------------------------------------------------------------------------------- /tpgtools/main_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/main_helpers.go -------------------------------------------------------------------------------- /tpgtools/misc_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/misc_utils.go -------------------------------------------------------------------------------- /tpgtools/mmv1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/mmv1.md -------------------------------------------------------------------------------- /tpgtools/names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/names.go -------------------------------------------------------------------------------- /tpgtools/override.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/override.go -------------------------------------------------------------------------------- /tpgtools/override_details.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/override_details.go -------------------------------------------------------------------------------- /tpgtools/overrides/apikeys/beta/key.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/apikeys/key.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/apikeys/samples/key/meta.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/assuredworkloads/beta/workload.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/assuredworkloads/workload.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/bigqueryreservation/assignment.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/bigqueryreservation/beta/assignment.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/bigqueryreservation/samples/assignment/meta.yaml: -------------------------------------------------------------------------------- 1 | 2 | ignore_read: 3 | - "reservation" -------------------------------------------------------------------------------- /tpgtools/overrides/cloudbuild/beta/worker_pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/overrides/cloudbuild/beta/worker_pool.yaml -------------------------------------------------------------------------------- /tpgtools/overrides/cloudbuild/tpgtools_product.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/overrides/cloudbuild/tpgtools_product.yaml -------------------------------------------------------------------------------- /tpgtools/overrides/cloudbuild/worker_pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/overrides/cloudbuild/worker_pool.yaml -------------------------------------------------------------------------------- /tpgtools/overrides/clouddeploy/beta/delivery_pipeline.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/clouddeploy/beta/target.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/clouddeploy/delivery_pipeline.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/clouddeploy/samples/deliverypipeline/meta.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/clouddeploy/samples/target/meta.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/clouddeploy/target.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/cloudresourcemanager/folder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/overrides/cloudresourcemanager/folder.yaml -------------------------------------------------------------------------------- /tpgtools/overrides/compute/beta/firewall_policy.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/compute/beta/firewall_policy_association.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/compute/firewall_policy.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/compute/firewall_policy_association.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/compute/forwarding_rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/overrides/compute/forwarding_rule.yaml -------------------------------------------------------------------------------- /tpgtools/overrides/compute/tpgtools_product.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/overrides/compute/tpgtools_product.yaml -------------------------------------------------------------------------------- /tpgtools/overrides/containeraws/beta/cluster.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/containeraws/beta/node_pool.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/containeraws/beta/tpgtools_product.yaml: -------------------------------------------------------------------------------- 1 | ## product level overrides 2 | 3 | - type: PRODUCT_BASE_PATH 4 | details: 5 | skip: true 6 | -------------------------------------------------------------------------------- /tpgtools/overrides/containeraws/cluster.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/containeraws/node_pool.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/containeraws/tpgtools_product.yaml: -------------------------------------------------------------------------------- 1 | ## product level overrides 2 | 3 | - type: PRODUCT_BASE_PATH 4 | details: 5 | skip: true 6 | -------------------------------------------------------------------------------- /tpgtools/overrides/containerazure/azure_client.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/containerazure/beta/azure_client.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/containerazure/beta/cluster.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/containerazure/beta/node_pool.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/containerazure/cluster.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/containerazure/node_pool.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/containerazure/samples/client/meta.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/containerazure/samples/nodepool/meta.yaml: -------------------------------------------------------------------------------- 1 | doc_hide: 2 | - beta_basic.tf.tmpl -------------------------------------------------------------------------------- /tpgtools/overrides/containerazure/tpgtools_product.yaml: -------------------------------------------------------------------------------- 1 | ## product level overrides 2 | 3 | - type: PRODUCT_BASE_PATH 4 | details: 5 | skip: true 6 | -------------------------------------------------------------------------------- /tpgtools/overrides/dataplex/asset.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/dataplex/beta/asset.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/dataplex/beta/lake.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/dataplex/beta/zone.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/dataplex/lake.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/dataplex/samples/asset/meta.yaml: -------------------------------------------------------------------------------- 1 | ignore_read: 2 | - "resource_spec.0.name" -------------------------------------------------------------------------------- /tpgtools/overrides/dataplex/samples/lake/meta.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/dataplex/samples/zone/meta.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/dataplex/zone.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/dataproc/tpgtools_product.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/overrides/dataproc/tpgtools_product.yaml -------------------------------------------------------------------------------- /tpgtools/overrides/dataproc/workflow_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/overrides/dataproc/workflow_template.yaml -------------------------------------------------------------------------------- /tpgtools/overrides/eventarc/beta/trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/overrides/eventarc/beta/trigger.yaml -------------------------------------------------------------------------------- /tpgtools/overrides/eventarc/samples/trigger/meta.yaml: -------------------------------------------------------------------------------- 1 | # meta.yaml 2 | # 3 | # 4 | 5 | -------------------------------------------------------------------------------- /tpgtools/overrides/eventarc/trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/overrides/eventarc/trigger.yaml -------------------------------------------------------------------------------- /tpgtools/overrides/firebaserules/beta/release.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/firebaserules/beta/ruleset.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/firebaserules/release.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/firebaserules/ruleset.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/firebaserules/samples/release/meta.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/firebaserules/samples/ruleset/meta.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/gkehub/beta/feature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/overrides/gkehub/beta/feature.yaml -------------------------------------------------------------------------------- /tpgtools/overrides/gkehub/samples/feature_membership/meta.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/logging/beta/log_view.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/logging/beta/tpgtools_product.yaml: -------------------------------------------------------------------------------- 1 | ## product level overrides 2 | 3 | - type: PRODUCT_BASE_PATH 4 | details: 5 | skip: true 6 | -------------------------------------------------------------------------------- /tpgtools/overrides/logging/log_view.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/logging/samples/logview/meta.yaml: -------------------------------------------------------------------------------- 1 | ignore_read: 2 | - bucket 3 | -------------------------------------------------------------------------------- /tpgtools/overrides/logging/tpgtools_product.yaml: -------------------------------------------------------------------------------- 1 | ## product level overrides 2 | 3 | - type: PRODUCT_BASE_PATH 4 | details: 5 | skip: true 6 | -------------------------------------------------------------------------------- /tpgtools/overrides/monitoring/samples/metricsscope/meta.yaml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tpgtools/overrides/monitoring/samples/monitoredproject/meta.yaml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tpgtools/overrides/monitoring/tpgtools_product.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/overrides/monitoring/tpgtools_product.yaml -------------------------------------------------------------------------------- /tpgtools/overrides/networkconnectivity/beta/hub.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/networkconnectivity/beta/spoke.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/networkconnectivity/hub.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/networkconnectivity/samples/hub/meta.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/networkconnectivity/samples/spoke/meta.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/networkconnectivity/spoke.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/orgpolicy/beta/policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/overrides/orgpolicy/beta/policy.yaml -------------------------------------------------------------------------------- /tpgtools/overrides/orgpolicy/policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/overrides/orgpolicy/policy.yaml -------------------------------------------------------------------------------- /tpgtools/overrides/osconfig/os_policy_assignment.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/osconfig/samples/ospolicyassignment/meta.yaml: -------------------------------------------------------------------------------- 1 | ignore_read: 2 | - "rollout.0.min_wait_duration" 3 | -------------------------------------------------------------------------------- /tpgtools/overrides/osconfig/tpgtools_product.yaml: -------------------------------------------------------------------------------- 1 | ## product level overrides 2 | 3 | - type: PRODUCT_BASE_PATH 4 | details: 5 | skip: true 6 | -------------------------------------------------------------------------------- /tpgtools/overrides/privateca/tpgtools_product.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/overrides/privateca/tpgtools_product.yaml -------------------------------------------------------------------------------- /tpgtools/overrides/recaptchaenterprise/beta/key.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/recaptchaenterprise/key.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/overrides/recaptchaenterprise/samples/key/meta.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/product.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/product.go -------------------------------------------------------------------------------- /tpgtools/property.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/property.go -------------------------------------------------------------------------------- /tpgtools/property_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/property_helpers.go -------------------------------------------------------------------------------- /tpgtools/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/resource.go -------------------------------------------------------------------------------- /tpgtools/sample.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/sample.go -------------------------------------------------------------------------------- /tpgtools/serializable/serializable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/serializable/serializable.go -------------------------------------------------------------------------------- /tpgtools/serializable/serializable_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/serializable/serializable_test.go -------------------------------------------------------------------------------- /tpgtools/serializable/test_specs/api/compute/firewall.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpgtools/serialization.go.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/serialization.go.base -------------------------------------------------------------------------------- /tpgtools/serialization_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/serialization_helpers.go -------------------------------------------------------------------------------- /tpgtools/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/strings.go -------------------------------------------------------------------------------- /tpgtools/templates/provider_dcl_endpoints.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/templates/provider_dcl_endpoints.go.tmpl -------------------------------------------------------------------------------- /tpgtools/templates/provider_dcl_resources.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/templates/provider_dcl_resources.go.tmpl -------------------------------------------------------------------------------- /tpgtools/templates/resource.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/templates/resource.go.tmpl -------------------------------------------------------------------------------- /tpgtools/templates/resource.html.markdown.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/templates/resource.html.markdown.tmpl -------------------------------------------------------------------------------- /tpgtools/templates/serialization.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/templates/serialization.go.tmpl -------------------------------------------------------------------------------- /tpgtools/templates/sweeper.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/templates/sweeper.go.tmpl -------------------------------------------------------------------------------- /tpgtools/templates/test_file.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/templates/test_file.go.tmpl -------------------------------------------------------------------------------- /tpgtools/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/type.go -------------------------------------------------------------------------------- /tpgtools/versions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linus/magic-modules/HEAD/tpgtools/versions.go --------------------------------------------------------------------------------