├── .dockerignore ├── .github ├── release-please.yml ├── renovate.json ├── trusted-contribution.yml └── workflows │ ├── lint.yaml │ └── stale.yml ├── .gitignore ├── CHANGELOG.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── bootstrap_files └── post_startup_script.sh ├── diagrams └── notebook_blueprint_arch.png ├── examples └── standalone_example │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── provider.tf │ ├── variables.tf │ └── versions.tf ├── iam.tf ├── kitchen.yml ├── main.tf ├── outputs.tf ├── policies ├── README.md ├── constraints │ ├── bigquery_cmek.yaml │ ├── bigquery_dataset_location.yaml │ ├── bigquery_world_readable.yaml │ ├── cmek_settings.yaml │ ├── compute_allowed_networks.yaml │ ├── compute_vm_external_ip.yaml │ ├── compute_zone.yaml │ ├── iam_block_service_account_creator_role.yaml │ ├── iam_custom_role_permissions.yaml │ ├── iam_deny_public.yaml │ ├── iam_deny_role.yaml │ ├── iam_restrict_domain.yaml │ ├── iam_restrict_role.yaml │ ├── iam_restrict_service_account_key_type.yaml │ ├── network_restrict_default.yaml │ ├── network_restrict_fw_rules_rdp_world_open.yaml │ ├── network_restrict_fw_rules_ssh_world_open.yaml │ ├── network_restrict_fw_rules_world_open.yaml │ ├── resource_allowed_resources_analytics.yaml │ ├── resource_allowed_resources_data.yaml │ ├── resource_allowed_resources_data_etl.yaml │ ├── resource_allowed_resources_kms.yaml │ ├── serviceusage_allow_basic_apis.yaml │ ├── storage_bucket_policy_only.yaml │ ├── storage_bucket_retention.yaml │ ├── storage_cmek_encryption_data.yaml │ ├── storage_cmek_encryption_data_etl.yaml │ ├── storage_denylist_public.yaml │ ├── storage_location.yaml │ ├── vpc_sc_allowlist_regions.yaml │ ├── vpc_sc_ensure_access_levels.yaml │ ├── vpc_sc_ensure_project.yaml │ └── vpc_sc_ensure_services.yaml └── validate.sh ├── policies_compute.tf ├── policies_gcp.tf ├── policies_iam.tf ├── provider.tf ├── test ├── .gitignore ├── fixtures │ └── standalone_example │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── variables.tf ├── integration │ └── standalone_example │ │ ├── controls │ │ ├── gcp_buckets.rb │ │ ├── gcp_compute_policies.rb │ │ ├── gcp_iam_policies.rb │ │ ├── gcp_kms.rb │ │ ├── gcp_notebooks.rb │ │ ├── gcp_perimeters.rb │ │ └── gcp_policies.rb │ │ └── inspec.yml └── setup │ ├── .gitignore │ ├── bq.tf │ ├── empty_schema.json │ ├── iam.tf │ ├── main.tf │ ├── make_source.sh │ ├── network.tf │ ├── outputs.tf │ ├── variables.tf │ └── versions.tf ├── variables.tf └── versions.tf /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/.github/release-please.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/trusted-contribution.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/.github/trusted-contribution.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap_files/post_startup_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/bootstrap_files/post_startup_script.sh -------------------------------------------------------------------------------- /diagrams/notebook_blueprint_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/diagrams/notebook_blueprint_arch.png -------------------------------------------------------------------------------- /examples/standalone_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/examples/standalone_example/README.md -------------------------------------------------------------------------------- /examples/standalone_example/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/examples/standalone_example/main.tf -------------------------------------------------------------------------------- /examples/standalone_example/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/examples/standalone_example/outputs.tf -------------------------------------------------------------------------------- /examples/standalone_example/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/examples/standalone_example/provider.tf -------------------------------------------------------------------------------- /examples/standalone_example/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/examples/standalone_example/variables.tf -------------------------------------------------------------------------------- /examples/standalone_example/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/examples/standalone_example/versions.tf -------------------------------------------------------------------------------- /iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/iam.tf -------------------------------------------------------------------------------- /kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/kitchen.yml -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/main.tf -------------------------------------------------------------------------------- /outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/outputs.tf -------------------------------------------------------------------------------- /policies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/README.md -------------------------------------------------------------------------------- /policies/constraints/bigquery_cmek.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/bigquery_cmek.yaml -------------------------------------------------------------------------------- /policies/constraints/bigquery_dataset_location.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/bigquery_dataset_location.yaml -------------------------------------------------------------------------------- /policies/constraints/bigquery_world_readable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/bigquery_world_readable.yaml -------------------------------------------------------------------------------- /policies/constraints/cmek_settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/cmek_settings.yaml -------------------------------------------------------------------------------- /policies/constraints/compute_allowed_networks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/compute_allowed_networks.yaml -------------------------------------------------------------------------------- /policies/constraints/compute_vm_external_ip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/compute_vm_external_ip.yaml -------------------------------------------------------------------------------- /policies/constraints/compute_zone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/compute_zone.yaml -------------------------------------------------------------------------------- /policies/constraints/iam_block_service_account_creator_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/iam_block_service_account_creator_role.yaml -------------------------------------------------------------------------------- /policies/constraints/iam_custom_role_permissions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/iam_custom_role_permissions.yaml -------------------------------------------------------------------------------- /policies/constraints/iam_deny_public.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/iam_deny_public.yaml -------------------------------------------------------------------------------- /policies/constraints/iam_deny_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/iam_deny_role.yaml -------------------------------------------------------------------------------- /policies/constraints/iam_restrict_domain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/iam_restrict_domain.yaml -------------------------------------------------------------------------------- /policies/constraints/iam_restrict_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/iam_restrict_role.yaml -------------------------------------------------------------------------------- /policies/constraints/iam_restrict_service_account_key_type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/iam_restrict_service_account_key_type.yaml -------------------------------------------------------------------------------- /policies/constraints/network_restrict_default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/network_restrict_default.yaml -------------------------------------------------------------------------------- /policies/constraints/network_restrict_fw_rules_rdp_world_open.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/network_restrict_fw_rules_rdp_world_open.yaml -------------------------------------------------------------------------------- /policies/constraints/network_restrict_fw_rules_ssh_world_open.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/network_restrict_fw_rules_ssh_world_open.yaml -------------------------------------------------------------------------------- /policies/constraints/network_restrict_fw_rules_world_open.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/network_restrict_fw_rules_world_open.yaml -------------------------------------------------------------------------------- /policies/constraints/resource_allowed_resources_analytics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/resource_allowed_resources_analytics.yaml -------------------------------------------------------------------------------- /policies/constraints/resource_allowed_resources_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/resource_allowed_resources_data.yaml -------------------------------------------------------------------------------- /policies/constraints/resource_allowed_resources_data_etl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/resource_allowed_resources_data_etl.yaml -------------------------------------------------------------------------------- /policies/constraints/resource_allowed_resources_kms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/resource_allowed_resources_kms.yaml -------------------------------------------------------------------------------- /policies/constraints/serviceusage_allow_basic_apis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/serviceusage_allow_basic_apis.yaml -------------------------------------------------------------------------------- /policies/constraints/storage_bucket_policy_only.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/storage_bucket_policy_only.yaml -------------------------------------------------------------------------------- /policies/constraints/storage_bucket_retention.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/storage_bucket_retention.yaml -------------------------------------------------------------------------------- /policies/constraints/storage_cmek_encryption_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/storage_cmek_encryption_data.yaml -------------------------------------------------------------------------------- /policies/constraints/storage_cmek_encryption_data_etl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/storage_cmek_encryption_data_etl.yaml -------------------------------------------------------------------------------- /policies/constraints/storage_denylist_public.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/storage_denylist_public.yaml -------------------------------------------------------------------------------- /policies/constraints/storage_location.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/storage_location.yaml -------------------------------------------------------------------------------- /policies/constraints/vpc_sc_allowlist_regions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/vpc_sc_allowlist_regions.yaml -------------------------------------------------------------------------------- /policies/constraints/vpc_sc_ensure_access_levels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/vpc_sc_ensure_access_levels.yaml -------------------------------------------------------------------------------- /policies/constraints/vpc_sc_ensure_project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/vpc_sc_ensure_project.yaml -------------------------------------------------------------------------------- /policies/constraints/vpc_sc_ensure_services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/constraints/vpc_sc_ensure_services.yaml -------------------------------------------------------------------------------- /policies/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies/validate.sh -------------------------------------------------------------------------------- /policies_compute.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies_compute.tf -------------------------------------------------------------------------------- /policies_gcp.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies_gcp.tf -------------------------------------------------------------------------------- /policies_iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/policies_iam.tf -------------------------------------------------------------------------------- /provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/provider.tf -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | source.sh 2 | -------------------------------------------------------------------------------- /test/fixtures/standalone_example/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/test/fixtures/standalone_example/main.tf -------------------------------------------------------------------------------- /test/fixtures/standalone_example/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/test/fixtures/standalone_example/outputs.tf -------------------------------------------------------------------------------- /test/fixtures/standalone_example/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/test/fixtures/standalone_example/variables.tf -------------------------------------------------------------------------------- /test/integration/standalone_example/controls/gcp_buckets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/test/integration/standalone_example/controls/gcp_buckets.rb -------------------------------------------------------------------------------- /test/integration/standalone_example/controls/gcp_compute_policies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/test/integration/standalone_example/controls/gcp_compute_policies.rb -------------------------------------------------------------------------------- /test/integration/standalone_example/controls/gcp_iam_policies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/test/integration/standalone_example/controls/gcp_iam_policies.rb -------------------------------------------------------------------------------- /test/integration/standalone_example/controls/gcp_kms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/test/integration/standalone_example/controls/gcp_kms.rb -------------------------------------------------------------------------------- /test/integration/standalone_example/controls/gcp_notebooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/test/integration/standalone_example/controls/gcp_notebooks.rb -------------------------------------------------------------------------------- /test/integration/standalone_example/controls/gcp_perimeters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/test/integration/standalone_example/controls/gcp_perimeters.rb -------------------------------------------------------------------------------- /test/integration/standalone_example/controls/gcp_policies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/test/integration/standalone_example/controls/gcp_policies.rb -------------------------------------------------------------------------------- /test/integration/standalone_example/inspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/test/integration/standalone_example/inspec.yml -------------------------------------------------------------------------------- /test/setup/.gitignore: -------------------------------------------------------------------------------- 1 | terraform.tfvars 2 | source.sh 3 | -------------------------------------------------------------------------------- /test/setup/bq.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/test/setup/bq.tf -------------------------------------------------------------------------------- /test/setup/empty_schema.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /test/setup/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/test/setup/iam.tf -------------------------------------------------------------------------------- /test/setup/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/test/setup/main.tf -------------------------------------------------------------------------------- /test/setup/make_source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/test/setup/make_source.sh -------------------------------------------------------------------------------- /test/setup/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/test/setup/network.tf -------------------------------------------------------------------------------- /test/setup/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/test/setup/outputs.tf -------------------------------------------------------------------------------- /test/setup/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/test/setup/variables.tf -------------------------------------------------------------------------------- /test/setup/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/test/setup/versions.tf -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/variables.tf -------------------------------------------------------------------------------- /versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/notebooks-blueprint-security/HEAD/versions.tf --------------------------------------------------------------------------------