├── .github ├── conventional-commit-lint.yaml ├── release-please.yml └── workflows │ ├── schema.yml │ └── stale.yml ├── .gitignore ├── .prow.yaml ├── .release-please-manifest.json ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── OWNERS ├── OWNERS_ALIASES ├── README.md ├── catalog ├── acm │ ├── CHANGELOG.md │ ├── Kptfile │ ├── README.md │ ├── config-mgmt-csr.yaml │ ├── config-mgmt-iam.yaml │ ├── feat-config-mgmt.yaml │ ├── membership.yaml │ ├── services.yaml │ └── setters.yaml ├── anthos-cluster │ ├── CHANGELOG.md │ ├── Kptfile │ ├── README.md │ ├── acm │ │ ├── Kptfile │ │ ├── README.md │ │ ├── acm-membership-api.yaml │ │ ├── config-mgmt-csr.yaml │ │ ├── config-mgmt-iam.yaml │ │ ├── feat-config-mgmt.yaml │ │ ├── membership.yaml │ │ ├── services.yaml │ │ └── setters.yaml │ ├── gke │ │ ├── CHANGELOG.md │ │ ├── Kptfile │ │ ├── README.md │ │ ├── cluster │ │ │ ├── Kptfile │ │ │ ├── README.md │ │ │ ├── cluster.yaml │ │ │ ├── container-api.yaml │ │ │ └── setters.yaml │ │ ├── nodepools │ │ │ └── primary │ │ │ │ ├── Kptfile │ │ │ │ ├── README.md │ │ │ │ ├── node-iam.yaml │ │ │ │ ├── nodepool.yaml │ │ │ │ └── setters.yaml │ │ └── setters.yaml │ └── setters.yaml ├── bucket │ ├── CHANGELOG.md │ ├── Kptfile │ ├── README.md │ ├── bucket.yaml │ └── setters.yaml ├── empty │ ├── CHANGELOG.md │ ├── Kptfile │ ├── README.md │ └── noop.yaml ├── gitops │ ├── CHANGELOG.md │ ├── Kptfile │ ├── README.md │ ├── cloudbuild-iam.yaml │ ├── configsync │ │ ├── Kptfile │ │ ├── README.md │ │ ├── config-management.yaml │ │ ├── configsync-iam.yaml │ │ ├── rootsync.yaml │ │ ├── setters.yaml │ │ └── validation.yaml │ ├── hydration-trigger.yaml │ ├── services.yaml │ ├── setters.yaml │ └── source-repositories.yaml ├── gke-autopilot │ ├── CHANGELOG.md │ ├── Kptfile │ ├── README.md │ ├── cluster │ │ ├── Kptfile │ │ ├── README.md │ │ ├── cluster.yaml │ │ ├── container-api.yaml │ │ └── setters.yaml │ └── setters.yaml ├── gke │ ├── CHANGELOG.md │ ├── Kptfile │ ├── README.md │ ├── cluster │ │ ├── Kptfile │ │ ├── README.md │ │ ├── cluster.yaml │ │ ├── container-api.yaml │ │ └── setters.yaml │ ├── nodepools │ │ └── primary │ │ │ ├── Kptfile │ │ │ ├── README.md │ │ │ ├── node-iam.yaml │ │ │ ├── nodepool.yaml │ │ │ └── setters.yaml │ └── setters.yaml ├── hierarchy │ ├── CHANGELOG.md │ ├── README.md │ ├── bu │ │ ├── Kptfile │ │ ├── README.md │ │ ├── hierarchy.yaml │ │ └── policies │ │ │ └── naming-constraint.yaml │ ├── env-bu │ │ ├── Kptfile │ │ ├── README.md │ │ ├── hierarchy.yaml │ │ └── policies │ │ │ └── naming-constraint.yaml │ ├── simple │ │ ├── Kptfile │ │ ├── README.md │ │ ├── hierarchy.yaml │ │ └── policies │ │ │ └── naming-constraint.yaml │ └── team │ │ ├── Kptfile │ │ ├── README.md │ │ ├── hierarchy.yaml │ │ └── policies │ │ └── naming-constraint.yaml ├── iam-foundation │ ├── CHANGELOG.md │ ├── Kptfile │ ├── README.md │ ├── devops.yaml │ ├── networking.yaml │ ├── org.yaml │ ├── security.yaml │ └── setters.yaml ├── landing-zone-lite │ ├── CHANGELOG.md │ ├── Kptfile │ ├── README.md │ ├── iam.yaml │ ├── namespaces │ │ ├── hierarchy.yaml │ │ └── projects.yaml │ ├── projects │ │ └── .gitkeep │ ├── services.yaml │ └── setters.yaml ├── landing-zone │ ├── CHANGELOG.md │ ├── Kptfile │ ├── README.md │ ├── iam.yaml │ ├── logging │ │ └── .gitkeep │ ├── namespaces │ │ ├── hierarchy.yaml │ │ ├── logging.yaml │ │ ├── networking.yaml │ │ ├── policies.yaml │ │ └── projects.yaml │ ├── network │ │ └── .gitkeep │ ├── policies │ │ ├── deletion-policy-required-template.yaml │ │ ├── disable-guest-attributes.yaml │ │ ├── disable-iam-grants-default-sa.yaml │ │ ├── disable-nested-virtualization.yaml │ │ ├── disable-sa-key-creation.yaml │ │ ├── disable-serial-port.yaml │ │ ├── disable-vm-external-ip.yaml │ │ ├── enforce-uniform-bucket-lvl-access.yaml │ │ ├── folder-naming-constraint-template.yaml │ │ ├── restrict-cloud-sql-public-ip.yaml │ │ ├── restrict-lien-removal.yaml │ │ └── skip-default-network.yaml │ ├── projects │ │ └── .gitkeep │ ├── services.yaml │ └── setters.yaml ├── log-export │ ├── CHANGELOG.md │ ├── README.md │ ├── folder │ │ ├── bigquery-export │ │ │ ├── Kptfile │ │ │ ├── README.md │ │ │ ├── export.yaml │ │ │ ├── iam.yaml │ │ │ └── setters.yaml │ │ ├── logbucket-export │ │ │ ├── Kptfile │ │ │ ├── README.md │ │ │ ├── export.yaml │ │ │ ├── iam.yaml │ │ │ └── setters.yaml │ │ ├── pubsub-export │ │ │ ├── Kptfile │ │ │ ├── README.md │ │ │ ├── export.yaml │ │ │ ├── iam.yaml │ │ │ └── setters.yaml │ │ └── storage-export │ │ │ ├── Kptfile │ │ │ ├── README.md │ │ │ ├── export.yaml │ │ │ ├── iam.yaml │ │ │ └── setters.yaml │ ├── org │ │ ├── bigquery-export │ │ │ ├── Kptfile │ │ │ ├── README.md │ │ │ ├── export.yaml │ │ │ ├── iam.yaml │ │ │ └── setters.yaml │ │ ├── logbucket-export │ │ │ ├── Kptfile │ │ │ ├── README.md │ │ │ ├── export.yaml │ │ │ ├── iam.yaml │ │ │ └── setters.yaml │ │ ├── pubsub-export │ │ │ ├── Kptfile │ │ │ ├── README.md │ │ │ ├── export.yaml │ │ │ ├── iam.yaml │ │ │ └── setters.yaml │ │ └── storage-export │ │ │ ├── Kptfile │ │ │ ├── README.md │ │ │ ├── export.yaml │ │ │ ├── iam.yaml │ │ │ └── setters.yaml │ └── policies │ │ └── force-include-children.yaml ├── networking │ ├── CHANGELOG.md │ ├── README.md │ ├── dns │ │ ├── README.md │ │ ├── managedzone-forwarding │ │ │ ├── Kptfile │ │ │ ├── README.md │ │ │ ├── dns.yaml │ │ │ ├── services.yaml │ │ │ └── setters.yaml │ │ ├── managedzone-peering │ │ │ ├── Kptfile │ │ │ ├── README.md │ │ │ ├── dns.yaml │ │ │ ├── services.yaml │ │ │ └── setters.yaml │ │ ├── managedzone-private │ │ │ ├── Kptfile │ │ │ ├── README.md │ │ │ ├── dns.yaml │ │ │ ├── services.yaml │ │ │ └── setters.yaml │ │ ├── policy │ │ │ ├── Kptfile │ │ │ ├── README.md │ │ │ ├── policy.yaml │ │ │ └── setters.yaml │ │ └── recordset │ │ │ ├── Kptfile │ │ │ ├── README.md │ │ │ ├── recordset.yaml │ │ │ └── setters.yaml │ ├── firewall │ │ ├── README.md │ │ └── common-rules │ │ │ ├── Kptfile │ │ │ ├── README.md │ │ │ ├── egress │ │ │ ├── allow-google-apis.yaml │ │ │ ├── allow-windows-kms.yaml │ │ │ └── deny-all.yaml │ │ │ ├── ingress │ │ │ ├── allow-gcp-lb.yaml │ │ │ ├── allow-iap-rdp.yaml │ │ │ ├── allow-iap-ssh.yaml │ │ │ └── allow-internal-common.yaml │ │ │ └── setters.yaml │ ├── network │ │ ├── Kptfile │ │ ├── README.md │ │ ├── setters.yaml │ │ ├── subnet │ │ │ ├── Kptfile │ │ │ ├── README.md │ │ │ ├── nat.yaml │ │ │ ├── setters.yaml │ │ │ └── subnet.yaml │ │ ├── vpc │ │ │ ├── Kptfile │ │ │ ├── README.md │ │ │ ├── services.yaml │ │ │ ├── setters.yaml │ │ │ └── vpc.yaml │ │ └── vpn.yaml │ ├── peering │ │ ├── Kptfile │ │ ├── README.md │ │ ├── peering.yaml │ │ └── setters.yaml │ ├── routes │ │ └── routes-igw │ │ │ ├── Kptfile │ │ │ ├── README.md │ │ │ ├── route.yaml │ │ │ └── setters.yaml │ ├── shared-vpc │ │ ├── Kptfile │ │ ├── README.md │ │ ├── setters.yaml │ │ └── sharedVPC.yaml │ ├── svpc-service-project │ │ ├── Kptfile │ │ ├── README.md │ │ ├── serviceproject.yaml │ │ └── setters.yaml │ └── vpc-service-controls │ │ ├── access-policy │ │ ├── Kptfile │ │ ├── README.md │ │ ├── policy.yaml │ │ └── setters.yaml │ │ └── perimeter │ │ ├── Kptfile │ │ ├── README.md │ │ ├── access-level.yaml │ │ ├── perimeter.yaml │ │ └── setters.yaml ├── project │ ├── CHANGELOG.md │ ├── Kptfile │ ├── README.md │ ├── kcc-namespace │ │ ├── Kptfile │ │ ├── README.md │ │ ├── kcc-namespace-viewer.yaml │ │ ├── kcc-project-owner.yaml │ │ ├── kcc.yaml │ │ ├── namespace.yaml │ │ ├── setters.yaml │ │ └── validation.yaml │ ├── project.yaml │ └── setters.yaml ├── redis-bucket │ ├── CHANGELOG.md │ ├── Kptfile │ ├── README.md │ ├── bucket.yaml │ ├── redis.yaml │ └── setters.yaml ├── spanner │ ├── CHANGELOG.md │ ├── Kptfile │ ├── README.md │ ├── policies │ │ └── deletion-policy-required-constraint.yaml │ ├── setters.yaml │ └── spanner.yaml └── sql │ └── auth-proxy │ ├── CHANGELOG.md │ ├── Kptfile │ ├── README.md │ ├── daemonset.yaml │ ├── iam.yaml │ ├── service.yaml │ ├── serviceAccount.yaml │ └── setters.yaml ├── examples ├── dual-svpc │ ├── README.md │ ├── vpc-shared-base │ │ ├── Kptfile │ │ ├── README.md │ │ ├── fw │ │ │ ├── Kptfile │ │ │ ├── README.md │ │ │ ├── ingress │ │ │ │ ├── allow-iap-rdp.yaml │ │ │ │ ├── allow-iap-ssh.yaml │ │ │ │ └── allow-icmp.yaml │ │ │ └── setters.yaml │ │ ├── privatesvcs.yaml │ │ ├── routes.yaml │ │ ├── sb-shared-base-r1 │ │ │ ├── Kptfile │ │ │ ├── README.md │ │ │ ├── nat.yaml │ │ │ ├── setters.yaml │ │ │ └── subnet.yaml │ │ ├── sb-shared-base-r2 │ │ │ ├── Kptfile │ │ │ ├── README.md │ │ │ ├── nat.yaml │ │ │ ├── setters.yaml │ │ │ └── subnet.yaml │ │ ├── setters.yaml │ │ └── vpc.yaml │ └── vpc-shared-restricted │ │ ├── Kptfile │ │ ├── README.md │ │ ├── fw │ │ ├── Kptfile │ │ ├── README.md │ │ ├── ingress │ │ │ ├── allow-iap-rdp.yaml │ │ │ ├── allow-iap-ssh.yaml │ │ │ └── allow-icmp.yaml │ │ └── setters.yaml │ │ ├── privatesvcs.yaml │ │ ├── routes.yaml │ │ ├── sb-shared-restricted-r1 │ │ ├── Kptfile │ │ ├── README.md │ │ ├── nat.yaml │ │ ├── setters.yaml │ │ └── subnet.yaml │ │ ├── sb-shared-restricted-r2 │ │ ├── Kptfile │ │ ├── README.md │ │ ├── nat.yaml │ │ ├── setters.yaml │ │ └── subnet.yaml │ │ ├── setters.yaml │ │ ├── vpc.yaml │ │ └── vpcsc-perimeter │ │ ├── Kptfile │ │ ├── README.md │ │ ├── access-level.yaml │ │ ├── perimeter.yaml │ │ └── setters.yaml ├── iam-audit-config │ ├── Kptfile │ ├── README.md │ ├── audit.yaml │ └── setters.yaml ├── simple-bucket │ ├── Kptfile │ ├── README.md │ ├── bucket.yaml │ └── setters.yaml └── simple-network │ ├── Kptfile │ ├── README.md │ ├── setters.yaml │ ├── subnet │ ├── Kptfile │ ├── README.md │ ├── nat.yaml │ ├── setters.yaml │ └── subnet.yaml │ ├── vpc │ ├── Kptfile │ ├── README.md │ ├── services.yaml │ ├── setters.yaml │ └── vpc.yaml │ └── vpn.yaml ├── release-please-config.json ├── renovate.json ├── test └── integration │ ├── go.mod │ ├── go.sum │ ├── simple-bucket │ └── simple_bucket_test.go │ └── simple-network │ └── simple_network_test.go └── utils ├── add-attribution.sh ├── check_lint.sh ├── component-versions.sh ├── fix-attribution.sh ├── fix_lint.sh ├── lint.sh └── testutils ├── create_all.sh ├── krmt.sh └── krmt_helpers.sh /.github/conventional-commit-lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/.github/conventional-commit-lint.yaml -------------------------------------------------------------------------------- /.github/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/.github/release-please.yml -------------------------------------------------------------------------------- /.github/workflows/schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/.github/workflows/schema.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/.gitignore -------------------------------------------------------------------------------- /.prow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/.prow.yaml -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/.release-please-manifest.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @GoogleCloudPlatform/blueprint-solutions @askmeegs 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/OWNERS -------------------------------------------------------------------------------- /OWNERS_ALIASES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/OWNERS_ALIASES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/README.md -------------------------------------------------------------------------------- /catalog/acm/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/acm/CHANGELOG.md -------------------------------------------------------------------------------- /catalog/acm/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/acm/Kptfile -------------------------------------------------------------------------------- /catalog/acm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/acm/README.md -------------------------------------------------------------------------------- /catalog/acm/config-mgmt-csr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/acm/config-mgmt-csr.yaml -------------------------------------------------------------------------------- /catalog/acm/config-mgmt-iam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/acm/config-mgmt-iam.yaml -------------------------------------------------------------------------------- /catalog/acm/feat-config-mgmt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/acm/feat-config-mgmt.yaml -------------------------------------------------------------------------------- /catalog/acm/membership.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/acm/membership.yaml -------------------------------------------------------------------------------- /catalog/acm/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/acm/services.yaml -------------------------------------------------------------------------------- /catalog/acm/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/acm/setters.yaml -------------------------------------------------------------------------------- /catalog/anthos-cluster/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/anthos-cluster/CHANGELOG.md -------------------------------------------------------------------------------- /catalog/anthos-cluster/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/anthos-cluster/Kptfile -------------------------------------------------------------------------------- /catalog/anthos-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/anthos-cluster/README.md -------------------------------------------------------------------------------- /catalog/anthos-cluster/acm/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/anthos-cluster/acm/Kptfile -------------------------------------------------------------------------------- /catalog/anthos-cluster/acm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/anthos-cluster/acm/README.md -------------------------------------------------------------------------------- /catalog/anthos-cluster/acm/acm-membership-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/anthos-cluster/acm/acm-membership-api.yaml -------------------------------------------------------------------------------- /catalog/anthos-cluster/acm/config-mgmt-csr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/anthos-cluster/acm/config-mgmt-csr.yaml -------------------------------------------------------------------------------- /catalog/anthos-cluster/acm/config-mgmt-iam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/anthos-cluster/acm/config-mgmt-iam.yaml -------------------------------------------------------------------------------- /catalog/anthos-cluster/acm/feat-config-mgmt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/anthos-cluster/acm/feat-config-mgmt.yaml -------------------------------------------------------------------------------- /catalog/anthos-cluster/acm/membership.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/anthos-cluster/acm/membership.yaml -------------------------------------------------------------------------------- /catalog/anthos-cluster/acm/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/anthos-cluster/acm/services.yaml -------------------------------------------------------------------------------- /catalog/anthos-cluster/acm/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/anthos-cluster/acm/setters.yaml -------------------------------------------------------------------------------- /catalog/anthos-cluster/gke/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/anthos-cluster/gke/CHANGELOG.md -------------------------------------------------------------------------------- /catalog/anthos-cluster/gke/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/anthos-cluster/gke/Kptfile -------------------------------------------------------------------------------- /catalog/anthos-cluster/gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/anthos-cluster/gke/README.md -------------------------------------------------------------------------------- /catalog/anthos-cluster/gke/cluster/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/anthos-cluster/gke/cluster/Kptfile -------------------------------------------------------------------------------- /catalog/anthos-cluster/gke/cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/anthos-cluster/gke/cluster/README.md -------------------------------------------------------------------------------- /catalog/anthos-cluster/gke/cluster/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/anthos-cluster/gke/cluster/cluster.yaml -------------------------------------------------------------------------------- /catalog/anthos-cluster/gke/cluster/container-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/anthos-cluster/gke/cluster/container-api.yaml -------------------------------------------------------------------------------- /catalog/anthos-cluster/gke/cluster/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/anthos-cluster/gke/cluster/setters.yaml -------------------------------------------------------------------------------- /catalog/anthos-cluster/gke/nodepools/primary/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/anthos-cluster/gke/nodepools/primary/Kptfile -------------------------------------------------------------------------------- /catalog/anthos-cluster/gke/nodepools/primary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/anthos-cluster/gke/nodepools/primary/README.md -------------------------------------------------------------------------------- /catalog/anthos-cluster/gke/nodepools/primary/node-iam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/anthos-cluster/gke/nodepools/primary/node-iam.yaml -------------------------------------------------------------------------------- /catalog/anthos-cluster/gke/nodepools/primary/nodepool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/anthos-cluster/gke/nodepools/primary/nodepool.yaml -------------------------------------------------------------------------------- /catalog/anthos-cluster/gke/nodepools/primary/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/anthos-cluster/gke/nodepools/primary/setters.yaml -------------------------------------------------------------------------------- /catalog/anthos-cluster/gke/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/anthos-cluster/gke/setters.yaml -------------------------------------------------------------------------------- /catalog/anthos-cluster/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/anthos-cluster/setters.yaml -------------------------------------------------------------------------------- /catalog/bucket/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/bucket/CHANGELOG.md -------------------------------------------------------------------------------- /catalog/bucket/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/bucket/Kptfile -------------------------------------------------------------------------------- /catalog/bucket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/bucket/README.md -------------------------------------------------------------------------------- /catalog/bucket/bucket.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/bucket/bucket.yaml -------------------------------------------------------------------------------- /catalog/bucket/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/bucket/setters.yaml -------------------------------------------------------------------------------- /catalog/empty/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/empty/CHANGELOG.md -------------------------------------------------------------------------------- /catalog/empty/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/empty/Kptfile -------------------------------------------------------------------------------- /catalog/empty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/empty/README.md -------------------------------------------------------------------------------- /catalog/empty/noop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/empty/noop.yaml -------------------------------------------------------------------------------- /catalog/gitops/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gitops/CHANGELOG.md -------------------------------------------------------------------------------- /catalog/gitops/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gitops/Kptfile -------------------------------------------------------------------------------- /catalog/gitops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gitops/README.md -------------------------------------------------------------------------------- /catalog/gitops/cloudbuild-iam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gitops/cloudbuild-iam.yaml -------------------------------------------------------------------------------- /catalog/gitops/configsync/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gitops/configsync/Kptfile -------------------------------------------------------------------------------- /catalog/gitops/configsync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gitops/configsync/README.md -------------------------------------------------------------------------------- /catalog/gitops/configsync/config-management.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gitops/configsync/config-management.yaml -------------------------------------------------------------------------------- /catalog/gitops/configsync/configsync-iam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gitops/configsync/configsync-iam.yaml -------------------------------------------------------------------------------- /catalog/gitops/configsync/rootsync.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gitops/configsync/rootsync.yaml -------------------------------------------------------------------------------- /catalog/gitops/configsync/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gitops/configsync/setters.yaml -------------------------------------------------------------------------------- /catalog/gitops/configsync/validation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gitops/configsync/validation.yaml -------------------------------------------------------------------------------- /catalog/gitops/hydration-trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gitops/hydration-trigger.yaml -------------------------------------------------------------------------------- /catalog/gitops/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gitops/services.yaml -------------------------------------------------------------------------------- /catalog/gitops/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gitops/setters.yaml -------------------------------------------------------------------------------- /catalog/gitops/source-repositories.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gitops/source-repositories.yaml -------------------------------------------------------------------------------- /catalog/gke-autopilot/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gke-autopilot/CHANGELOG.md -------------------------------------------------------------------------------- /catalog/gke-autopilot/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gke-autopilot/Kptfile -------------------------------------------------------------------------------- /catalog/gke-autopilot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gke-autopilot/README.md -------------------------------------------------------------------------------- /catalog/gke-autopilot/cluster/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gke-autopilot/cluster/Kptfile -------------------------------------------------------------------------------- /catalog/gke-autopilot/cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gke-autopilot/cluster/README.md -------------------------------------------------------------------------------- /catalog/gke-autopilot/cluster/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gke-autopilot/cluster/cluster.yaml -------------------------------------------------------------------------------- /catalog/gke-autopilot/cluster/container-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gke-autopilot/cluster/container-api.yaml -------------------------------------------------------------------------------- /catalog/gke-autopilot/cluster/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gke-autopilot/cluster/setters.yaml -------------------------------------------------------------------------------- /catalog/gke-autopilot/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gke-autopilot/setters.yaml -------------------------------------------------------------------------------- /catalog/gke/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gke/CHANGELOG.md -------------------------------------------------------------------------------- /catalog/gke/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gke/Kptfile -------------------------------------------------------------------------------- /catalog/gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gke/README.md -------------------------------------------------------------------------------- /catalog/gke/cluster/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gke/cluster/Kptfile -------------------------------------------------------------------------------- /catalog/gke/cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gke/cluster/README.md -------------------------------------------------------------------------------- /catalog/gke/cluster/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gke/cluster/cluster.yaml -------------------------------------------------------------------------------- /catalog/gke/cluster/container-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gke/cluster/container-api.yaml -------------------------------------------------------------------------------- /catalog/gke/cluster/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gke/cluster/setters.yaml -------------------------------------------------------------------------------- /catalog/gke/nodepools/primary/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gke/nodepools/primary/Kptfile -------------------------------------------------------------------------------- /catalog/gke/nodepools/primary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gke/nodepools/primary/README.md -------------------------------------------------------------------------------- /catalog/gke/nodepools/primary/node-iam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gke/nodepools/primary/node-iam.yaml -------------------------------------------------------------------------------- /catalog/gke/nodepools/primary/nodepool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gke/nodepools/primary/nodepool.yaml -------------------------------------------------------------------------------- /catalog/gke/nodepools/primary/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gke/nodepools/primary/setters.yaml -------------------------------------------------------------------------------- /catalog/gke/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/gke/setters.yaml -------------------------------------------------------------------------------- /catalog/hierarchy/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/hierarchy/CHANGELOG.md -------------------------------------------------------------------------------- /catalog/hierarchy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/hierarchy/README.md -------------------------------------------------------------------------------- /catalog/hierarchy/bu/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/hierarchy/bu/Kptfile -------------------------------------------------------------------------------- /catalog/hierarchy/bu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/hierarchy/bu/README.md -------------------------------------------------------------------------------- /catalog/hierarchy/bu/hierarchy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/hierarchy/bu/hierarchy.yaml -------------------------------------------------------------------------------- /catalog/hierarchy/bu/policies/naming-constraint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/hierarchy/bu/policies/naming-constraint.yaml -------------------------------------------------------------------------------- /catalog/hierarchy/env-bu/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/hierarchy/env-bu/Kptfile -------------------------------------------------------------------------------- /catalog/hierarchy/env-bu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/hierarchy/env-bu/README.md -------------------------------------------------------------------------------- /catalog/hierarchy/env-bu/hierarchy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/hierarchy/env-bu/hierarchy.yaml -------------------------------------------------------------------------------- /catalog/hierarchy/env-bu/policies/naming-constraint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/hierarchy/env-bu/policies/naming-constraint.yaml -------------------------------------------------------------------------------- /catalog/hierarchy/simple/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/hierarchy/simple/Kptfile -------------------------------------------------------------------------------- /catalog/hierarchy/simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/hierarchy/simple/README.md -------------------------------------------------------------------------------- /catalog/hierarchy/simple/hierarchy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/hierarchy/simple/hierarchy.yaml -------------------------------------------------------------------------------- /catalog/hierarchy/simple/policies/naming-constraint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/hierarchy/simple/policies/naming-constraint.yaml -------------------------------------------------------------------------------- /catalog/hierarchy/team/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/hierarchy/team/Kptfile -------------------------------------------------------------------------------- /catalog/hierarchy/team/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/hierarchy/team/README.md -------------------------------------------------------------------------------- /catalog/hierarchy/team/hierarchy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/hierarchy/team/hierarchy.yaml -------------------------------------------------------------------------------- /catalog/hierarchy/team/policies/naming-constraint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/hierarchy/team/policies/naming-constraint.yaml -------------------------------------------------------------------------------- /catalog/iam-foundation/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/iam-foundation/CHANGELOG.md -------------------------------------------------------------------------------- /catalog/iam-foundation/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/iam-foundation/Kptfile -------------------------------------------------------------------------------- /catalog/iam-foundation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/iam-foundation/README.md -------------------------------------------------------------------------------- /catalog/iam-foundation/devops.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/iam-foundation/devops.yaml -------------------------------------------------------------------------------- /catalog/iam-foundation/networking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/iam-foundation/networking.yaml -------------------------------------------------------------------------------- /catalog/iam-foundation/org.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/iam-foundation/org.yaml -------------------------------------------------------------------------------- /catalog/iam-foundation/security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/iam-foundation/security.yaml -------------------------------------------------------------------------------- /catalog/iam-foundation/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/iam-foundation/setters.yaml -------------------------------------------------------------------------------- /catalog/landing-zone-lite/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone-lite/CHANGELOG.md -------------------------------------------------------------------------------- /catalog/landing-zone-lite/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone-lite/Kptfile -------------------------------------------------------------------------------- /catalog/landing-zone-lite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone-lite/README.md -------------------------------------------------------------------------------- /catalog/landing-zone-lite/iam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone-lite/iam.yaml -------------------------------------------------------------------------------- /catalog/landing-zone-lite/namespaces/hierarchy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone-lite/namespaces/hierarchy.yaml -------------------------------------------------------------------------------- /catalog/landing-zone-lite/namespaces/projects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone-lite/namespaces/projects.yaml -------------------------------------------------------------------------------- /catalog/landing-zone-lite/projects/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /catalog/landing-zone-lite/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone-lite/services.yaml -------------------------------------------------------------------------------- /catalog/landing-zone-lite/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone-lite/setters.yaml -------------------------------------------------------------------------------- /catalog/landing-zone/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone/CHANGELOG.md -------------------------------------------------------------------------------- /catalog/landing-zone/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone/Kptfile -------------------------------------------------------------------------------- /catalog/landing-zone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone/README.md -------------------------------------------------------------------------------- /catalog/landing-zone/iam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone/iam.yaml -------------------------------------------------------------------------------- /catalog/landing-zone/logging/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /catalog/landing-zone/namespaces/hierarchy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone/namespaces/hierarchy.yaml -------------------------------------------------------------------------------- /catalog/landing-zone/namespaces/logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone/namespaces/logging.yaml -------------------------------------------------------------------------------- /catalog/landing-zone/namespaces/networking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone/namespaces/networking.yaml -------------------------------------------------------------------------------- /catalog/landing-zone/namespaces/policies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone/namespaces/policies.yaml -------------------------------------------------------------------------------- /catalog/landing-zone/namespaces/projects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone/namespaces/projects.yaml -------------------------------------------------------------------------------- /catalog/landing-zone/network/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /catalog/landing-zone/policies/deletion-policy-required-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone/policies/deletion-policy-required-template.yaml -------------------------------------------------------------------------------- /catalog/landing-zone/policies/disable-guest-attributes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone/policies/disable-guest-attributes.yaml -------------------------------------------------------------------------------- /catalog/landing-zone/policies/disable-iam-grants-default-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone/policies/disable-iam-grants-default-sa.yaml -------------------------------------------------------------------------------- /catalog/landing-zone/policies/disable-nested-virtualization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone/policies/disable-nested-virtualization.yaml -------------------------------------------------------------------------------- /catalog/landing-zone/policies/disable-sa-key-creation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone/policies/disable-sa-key-creation.yaml -------------------------------------------------------------------------------- /catalog/landing-zone/policies/disable-serial-port.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone/policies/disable-serial-port.yaml -------------------------------------------------------------------------------- /catalog/landing-zone/policies/disable-vm-external-ip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone/policies/disable-vm-external-ip.yaml -------------------------------------------------------------------------------- /catalog/landing-zone/policies/enforce-uniform-bucket-lvl-access.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone/policies/enforce-uniform-bucket-lvl-access.yaml -------------------------------------------------------------------------------- /catalog/landing-zone/policies/folder-naming-constraint-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone/policies/folder-naming-constraint-template.yaml -------------------------------------------------------------------------------- /catalog/landing-zone/policies/restrict-cloud-sql-public-ip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone/policies/restrict-cloud-sql-public-ip.yaml -------------------------------------------------------------------------------- /catalog/landing-zone/policies/restrict-lien-removal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone/policies/restrict-lien-removal.yaml -------------------------------------------------------------------------------- /catalog/landing-zone/policies/skip-default-network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone/policies/skip-default-network.yaml -------------------------------------------------------------------------------- /catalog/landing-zone/projects/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /catalog/landing-zone/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone/services.yaml -------------------------------------------------------------------------------- /catalog/landing-zone/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/landing-zone/setters.yaml -------------------------------------------------------------------------------- /catalog/log-export/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/CHANGELOG.md -------------------------------------------------------------------------------- /catalog/log-export/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/README.md -------------------------------------------------------------------------------- /catalog/log-export/folder/bigquery-export/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/folder/bigquery-export/Kptfile -------------------------------------------------------------------------------- /catalog/log-export/folder/bigquery-export/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/folder/bigquery-export/README.md -------------------------------------------------------------------------------- /catalog/log-export/folder/bigquery-export/export.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/folder/bigquery-export/export.yaml -------------------------------------------------------------------------------- /catalog/log-export/folder/bigquery-export/iam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/folder/bigquery-export/iam.yaml -------------------------------------------------------------------------------- /catalog/log-export/folder/bigquery-export/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/folder/bigquery-export/setters.yaml -------------------------------------------------------------------------------- /catalog/log-export/folder/logbucket-export/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/folder/logbucket-export/Kptfile -------------------------------------------------------------------------------- /catalog/log-export/folder/logbucket-export/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/folder/logbucket-export/README.md -------------------------------------------------------------------------------- /catalog/log-export/folder/logbucket-export/export.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/folder/logbucket-export/export.yaml -------------------------------------------------------------------------------- /catalog/log-export/folder/logbucket-export/iam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/folder/logbucket-export/iam.yaml -------------------------------------------------------------------------------- /catalog/log-export/folder/logbucket-export/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/folder/logbucket-export/setters.yaml -------------------------------------------------------------------------------- /catalog/log-export/folder/pubsub-export/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/folder/pubsub-export/Kptfile -------------------------------------------------------------------------------- /catalog/log-export/folder/pubsub-export/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/folder/pubsub-export/README.md -------------------------------------------------------------------------------- /catalog/log-export/folder/pubsub-export/export.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/folder/pubsub-export/export.yaml -------------------------------------------------------------------------------- /catalog/log-export/folder/pubsub-export/iam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/folder/pubsub-export/iam.yaml -------------------------------------------------------------------------------- /catalog/log-export/folder/pubsub-export/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/folder/pubsub-export/setters.yaml -------------------------------------------------------------------------------- /catalog/log-export/folder/storage-export/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/folder/storage-export/Kptfile -------------------------------------------------------------------------------- /catalog/log-export/folder/storage-export/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/folder/storage-export/README.md -------------------------------------------------------------------------------- /catalog/log-export/folder/storage-export/export.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/folder/storage-export/export.yaml -------------------------------------------------------------------------------- /catalog/log-export/folder/storage-export/iam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/folder/storage-export/iam.yaml -------------------------------------------------------------------------------- /catalog/log-export/folder/storage-export/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/folder/storage-export/setters.yaml -------------------------------------------------------------------------------- /catalog/log-export/org/bigquery-export/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/org/bigquery-export/Kptfile -------------------------------------------------------------------------------- /catalog/log-export/org/bigquery-export/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/org/bigquery-export/README.md -------------------------------------------------------------------------------- /catalog/log-export/org/bigquery-export/export.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/org/bigquery-export/export.yaml -------------------------------------------------------------------------------- /catalog/log-export/org/bigquery-export/iam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/org/bigquery-export/iam.yaml -------------------------------------------------------------------------------- /catalog/log-export/org/bigquery-export/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/org/bigquery-export/setters.yaml -------------------------------------------------------------------------------- /catalog/log-export/org/logbucket-export/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/org/logbucket-export/Kptfile -------------------------------------------------------------------------------- /catalog/log-export/org/logbucket-export/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/org/logbucket-export/README.md -------------------------------------------------------------------------------- /catalog/log-export/org/logbucket-export/export.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/org/logbucket-export/export.yaml -------------------------------------------------------------------------------- /catalog/log-export/org/logbucket-export/iam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/org/logbucket-export/iam.yaml -------------------------------------------------------------------------------- /catalog/log-export/org/logbucket-export/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/org/logbucket-export/setters.yaml -------------------------------------------------------------------------------- /catalog/log-export/org/pubsub-export/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/org/pubsub-export/Kptfile -------------------------------------------------------------------------------- /catalog/log-export/org/pubsub-export/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/org/pubsub-export/README.md -------------------------------------------------------------------------------- /catalog/log-export/org/pubsub-export/export.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/org/pubsub-export/export.yaml -------------------------------------------------------------------------------- /catalog/log-export/org/pubsub-export/iam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/org/pubsub-export/iam.yaml -------------------------------------------------------------------------------- /catalog/log-export/org/pubsub-export/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/org/pubsub-export/setters.yaml -------------------------------------------------------------------------------- /catalog/log-export/org/storage-export/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/org/storage-export/Kptfile -------------------------------------------------------------------------------- /catalog/log-export/org/storage-export/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/org/storage-export/README.md -------------------------------------------------------------------------------- /catalog/log-export/org/storage-export/export.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/org/storage-export/export.yaml -------------------------------------------------------------------------------- /catalog/log-export/org/storage-export/iam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/org/storage-export/iam.yaml -------------------------------------------------------------------------------- /catalog/log-export/org/storage-export/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/org/storage-export/setters.yaml -------------------------------------------------------------------------------- /catalog/log-export/policies/force-include-children.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/log-export/policies/force-include-children.yaml -------------------------------------------------------------------------------- /catalog/networking/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/CHANGELOG.md -------------------------------------------------------------------------------- /catalog/networking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/README.md -------------------------------------------------------------------------------- /catalog/networking/dns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/dns/README.md -------------------------------------------------------------------------------- /catalog/networking/dns/managedzone-forwarding/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/dns/managedzone-forwarding/Kptfile -------------------------------------------------------------------------------- /catalog/networking/dns/managedzone-forwarding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/dns/managedzone-forwarding/README.md -------------------------------------------------------------------------------- /catalog/networking/dns/managedzone-forwarding/dns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/dns/managedzone-forwarding/dns.yaml -------------------------------------------------------------------------------- /catalog/networking/dns/managedzone-forwarding/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/dns/managedzone-forwarding/services.yaml -------------------------------------------------------------------------------- /catalog/networking/dns/managedzone-forwarding/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/dns/managedzone-forwarding/setters.yaml -------------------------------------------------------------------------------- /catalog/networking/dns/managedzone-peering/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/dns/managedzone-peering/Kptfile -------------------------------------------------------------------------------- /catalog/networking/dns/managedzone-peering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/dns/managedzone-peering/README.md -------------------------------------------------------------------------------- /catalog/networking/dns/managedzone-peering/dns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/dns/managedzone-peering/dns.yaml -------------------------------------------------------------------------------- /catalog/networking/dns/managedzone-peering/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/dns/managedzone-peering/services.yaml -------------------------------------------------------------------------------- /catalog/networking/dns/managedzone-peering/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/dns/managedzone-peering/setters.yaml -------------------------------------------------------------------------------- /catalog/networking/dns/managedzone-private/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/dns/managedzone-private/Kptfile -------------------------------------------------------------------------------- /catalog/networking/dns/managedzone-private/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/dns/managedzone-private/README.md -------------------------------------------------------------------------------- /catalog/networking/dns/managedzone-private/dns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/dns/managedzone-private/dns.yaml -------------------------------------------------------------------------------- /catalog/networking/dns/managedzone-private/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/dns/managedzone-private/services.yaml -------------------------------------------------------------------------------- /catalog/networking/dns/managedzone-private/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/dns/managedzone-private/setters.yaml -------------------------------------------------------------------------------- /catalog/networking/dns/policy/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/dns/policy/Kptfile -------------------------------------------------------------------------------- /catalog/networking/dns/policy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/dns/policy/README.md -------------------------------------------------------------------------------- /catalog/networking/dns/policy/policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/dns/policy/policy.yaml -------------------------------------------------------------------------------- /catalog/networking/dns/policy/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/dns/policy/setters.yaml -------------------------------------------------------------------------------- /catalog/networking/dns/recordset/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/dns/recordset/Kptfile -------------------------------------------------------------------------------- /catalog/networking/dns/recordset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/dns/recordset/README.md -------------------------------------------------------------------------------- /catalog/networking/dns/recordset/recordset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/dns/recordset/recordset.yaml -------------------------------------------------------------------------------- /catalog/networking/dns/recordset/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/dns/recordset/setters.yaml -------------------------------------------------------------------------------- /catalog/networking/firewall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/firewall/README.md -------------------------------------------------------------------------------- /catalog/networking/firewall/common-rules/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/firewall/common-rules/Kptfile -------------------------------------------------------------------------------- /catalog/networking/firewall/common-rules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/firewall/common-rules/README.md -------------------------------------------------------------------------------- /catalog/networking/firewall/common-rules/egress/allow-google-apis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/firewall/common-rules/egress/allow-google-apis.yaml -------------------------------------------------------------------------------- /catalog/networking/firewall/common-rules/egress/allow-windows-kms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/firewall/common-rules/egress/allow-windows-kms.yaml -------------------------------------------------------------------------------- /catalog/networking/firewall/common-rules/egress/deny-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/firewall/common-rules/egress/deny-all.yaml -------------------------------------------------------------------------------- /catalog/networking/firewall/common-rules/ingress/allow-gcp-lb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/firewall/common-rules/ingress/allow-gcp-lb.yaml -------------------------------------------------------------------------------- /catalog/networking/firewall/common-rules/ingress/allow-iap-rdp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/firewall/common-rules/ingress/allow-iap-rdp.yaml -------------------------------------------------------------------------------- /catalog/networking/firewall/common-rules/ingress/allow-iap-ssh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/firewall/common-rules/ingress/allow-iap-ssh.yaml -------------------------------------------------------------------------------- /catalog/networking/firewall/common-rules/ingress/allow-internal-common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/firewall/common-rules/ingress/allow-internal-common.yaml -------------------------------------------------------------------------------- /catalog/networking/firewall/common-rules/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/firewall/common-rules/setters.yaml -------------------------------------------------------------------------------- /catalog/networking/network/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/network/Kptfile -------------------------------------------------------------------------------- /catalog/networking/network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/network/README.md -------------------------------------------------------------------------------- /catalog/networking/network/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/network/setters.yaml -------------------------------------------------------------------------------- /catalog/networking/network/subnet/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/network/subnet/Kptfile -------------------------------------------------------------------------------- /catalog/networking/network/subnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/network/subnet/README.md -------------------------------------------------------------------------------- /catalog/networking/network/subnet/nat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/network/subnet/nat.yaml -------------------------------------------------------------------------------- /catalog/networking/network/subnet/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/network/subnet/setters.yaml -------------------------------------------------------------------------------- /catalog/networking/network/subnet/subnet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/network/subnet/subnet.yaml -------------------------------------------------------------------------------- /catalog/networking/network/vpc/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/network/vpc/Kptfile -------------------------------------------------------------------------------- /catalog/networking/network/vpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/network/vpc/README.md -------------------------------------------------------------------------------- /catalog/networking/network/vpc/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/network/vpc/services.yaml -------------------------------------------------------------------------------- /catalog/networking/network/vpc/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/network/vpc/setters.yaml -------------------------------------------------------------------------------- /catalog/networking/network/vpc/vpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/network/vpc/vpc.yaml -------------------------------------------------------------------------------- /catalog/networking/network/vpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/network/vpn.yaml -------------------------------------------------------------------------------- /catalog/networking/peering/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/peering/Kptfile -------------------------------------------------------------------------------- /catalog/networking/peering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/peering/README.md -------------------------------------------------------------------------------- /catalog/networking/peering/peering.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/peering/peering.yaml -------------------------------------------------------------------------------- /catalog/networking/peering/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/peering/setters.yaml -------------------------------------------------------------------------------- /catalog/networking/routes/routes-igw/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/routes/routes-igw/Kptfile -------------------------------------------------------------------------------- /catalog/networking/routes/routes-igw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/routes/routes-igw/README.md -------------------------------------------------------------------------------- /catalog/networking/routes/routes-igw/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/routes/routes-igw/route.yaml -------------------------------------------------------------------------------- /catalog/networking/routes/routes-igw/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/routes/routes-igw/setters.yaml -------------------------------------------------------------------------------- /catalog/networking/shared-vpc/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/shared-vpc/Kptfile -------------------------------------------------------------------------------- /catalog/networking/shared-vpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/shared-vpc/README.md -------------------------------------------------------------------------------- /catalog/networking/shared-vpc/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/shared-vpc/setters.yaml -------------------------------------------------------------------------------- /catalog/networking/shared-vpc/sharedVPC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/shared-vpc/sharedVPC.yaml -------------------------------------------------------------------------------- /catalog/networking/svpc-service-project/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/svpc-service-project/Kptfile -------------------------------------------------------------------------------- /catalog/networking/svpc-service-project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/svpc-service-project/README.md -------------------------------------------------------------------------------- /catalog/networking/svpc-service-project/serviceproject.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/svpc-service-project/serviceproject.yaml -------------------------------------------------------------------------------- /catalog/networking/svpc-service-project/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/svpc-service-project/setters.yaml -------------------------------------------------------------------------------- /catalog/networking/vpc-service-controls/access-policy/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/vpc-service-controls/access-policy/Kptfile -------------------------------------------------------------------------------- /catalog/networking/vpc-service-controls/access-policy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/vpc-service-controls/access-policy/README.md -------------------------------------------------------------------------------- /catalog/networking/vpc-service-controls/access-policy/policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/vpc-service-controls/access-policy/policy.yaml -------------------------------------------------------------------------------- /catalog/networking/vpc-service-controls/access-policy/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/vpc-service-controls/access-policy/setters.yaml -------------------------------------------------------------------------------- /catalog/networking/vpc-service-controls/perimeter/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/vpc-service-controls/perimeter/Kptfile -------------------------------------------------------------------------------- /catalog/networking/vpc-service-controls/perimeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/vpc-service-controls/perimeter/README.md -------------------------------------------------------------------------------- /catalog/networking/vpc-service-controls/perimeter/access-level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/vpc-service-controls/perimeter/access-level.yaml -------------------------------------------------------------------------------- /catalog/networking/vpc-service-controls/perimeter/perimeter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/vpc-service-controls/perimeter/perimeter.yaml -------------------------------------------------------------------------------- /catalog/networking/vpc-service-controls/perimeter/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/networking/vpc-service-controls/perimeter/setters.yaml -------------------------------------------------------------------------------- /catalog/project/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/project/CHANGELOG.md -------------------------------------------------------------------------------- /catalog/project/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/project/Kptfile -------------------------------------------------------------------------------- /catalog/project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/project/README.md -------------------------------------------------------------------------------- /catalog/project/kcc-namespace/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/project/kcc-namespace/Kptfile -------------------------------------------------------------------------------- /catalog/project/kcc-namespace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/project/kcc-namespace/README.md -------------------------------------------------------------------------------- /catalog/project/kcc-namespace/kcc-namespace-viewer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/project/kcc-namespace/kcc-namespace-viewer.yaml -------------------------------------------------------------------------------- /catalog/project/kcc-namespace/kcc-project-owner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/project/kcc-namespace/kcc-project-owner.yaml -------------------------------------------------------------------------------- /catalog/project/kcc-namespace/kcc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/project/kcc-namespace/kcc.yaml -------------------------------------------------------------------------------- /catalog/project/kcc-namespace/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/project/kcc-namespace/namespace.yaml -------------------------------------------------------------------------------- /catalog/project/kcc-namespace/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/project/kcc-namespace/setters.yaml -------------------------------------------------------------------------------- /catalog/project/kcc-namespace/validation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/project/kcc-namespace/validation.yaml -------------------------------------------------------------------------------- /catalog/project/project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/project/project.yaml -------------------------------------------------------------------------------- /catalog/project/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/project/setters.yaml -------------------------------------------------------------------------------- /catalog/redis-bucket/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/redis-bucket/CHANGELOG.md -------------------------------------------------------------------------------- /catalog/redis-bucket/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/redis-bucket/Kptfile -------------------------------------------------------------------------------- /catalog/redis-bucket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/redis-bucket/README.md -------------------------------------------------------------------------------- /catalog/redis-bucket/bucket.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/redis-bucket/bucket.yaml -------------------------------------------------------------------------------- /catalog/redis-bucket/redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/redis-bucket/redis.yaml -------------------------------------------------------------------------------- /catalog/redis-bucket/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/redis-bucket/setters.yaml -------------------------------------------------------------------------------- /catalog/spanner/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/spanner/CHANGELOG.md -------------------------------------------------------------------------------- /catalog/spanner/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/spanner/Kptfile -------------------------------------------------------------------------------- /catalog/spanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/spanner/README.md -------------------------------------------------------------------------------- /catalog/spanner/policies/deletion-policy-required-constraint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/spanner/policies/deletion-policy-required-constraint.yaml -------------------------------------------------------------------------------- /catalog/spanner/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/spanner/setters.yaml -------------------------------------------------------------------------------- /catalog/spanner/spanner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/spanner/spanner.yaml -------------------------------------------------------------------------------- /catalog/sql/auth-proxy/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/sql/auth-proxy/CHANGELOG.md -------------------------------------------------------------------------------- /catalog/sql/auth-proxy/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/sql/auth-proxy/Kptfile -------------------------------------------------------------------------------- /catalog/sql/auth-proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/sql/auth-proxy/README.md -------------------------------------------------------------------------------- /catalog/sql/auth-proxy/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/sql/auth-proxy/daemonset.yaml -------------------------------------------------------------------------------- /catalog/sql/auth-proxy/iam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/sql/auth-proxy/iam.yaml -------------------------------------------------------------------------------- /catalog/sql/auth-proxy/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/sql/auth-proxy/service.yaml -------------------------------------------------------------------------------- /catalog/sql/auth-proxy/serviceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/sql/auth-proxy/serviceAccount.yaml -------------------------------------------------------------------------------- /catalog/sql/auth-proxy/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/catalog/sql/auth-proxy/setters.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/README.md -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-base/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-base/Kptfile -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-base/README.md -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-base/fw/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-base/fw/Kptfile -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-base/fw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-base/fw/README.md -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-base/fw/ingress/allow-iap-rdp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-base/fw/ingress/allow-iap-rdp.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-base/fw/ingress/allow-iap-ssh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-base/fw/ingress/allow-iap-ssh.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-base/fw/ingress/allow-icmp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-base/fw/ingress/allow-icmp.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-base/fw/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-base/fw/setters.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-base/privatesvcs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-base/privatesvcs.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-base/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-base/routes.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-base/sb-shared-base-r1/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-base/sb-shared-base-r1/Kptfile -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-base/sb-shared-base-r1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-base/sb-shared-base-r1/README.md -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-base/sb-shared-base-r1/nat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-base/sb-shared-base-r1/nat.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-base/sb-shared-base-r1/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-base/sb-shared-base-r1/setters.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-base/sb-shared-base-r1/subnet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-base/sb-shared-base-r1/subnet.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-base/sb-shared-base-r2/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-base/sb-shared-base-r2/Kptfile -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-base/sb-shared-base-r2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-base/sb-shared-base-r2/README.md -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-base/sb-shared-base-r2/nat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-base/sb-shared-base-r2/nat.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-base/sb-shared-base-r2/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-base/sb-shared-base-r2/setters.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-base/sb-shared-base-r2/subnet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-base/sb-shared-base-r2/subnet.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-base/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-base/setters.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-base/vpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-base/vpc.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-restricted/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-restricted/Kptfile -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-restricted/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-restricted/README.md -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-restricted/fw/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-restricted/fw/Kptfile -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-restricted/fw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-restricted/fw/README.md -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-restricted/fw/ingress/allow-iap-rdp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-restricted/fw/ingress/allow-iap-rdp.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-restricted/fw/ingress/allow-iap-ssh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-restricted/fw/ingress/allow-iap-ssh.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-restricted/fw/ingress/allow-icmp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-restricted/fw/ingress/allow-icmp.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-restricted/fw/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-restricted/fw/setters.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-restricted/privatesvcs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-restricted/privatesvcs.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-restricted/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-restricted/routes.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-restricted/sb-shared-restricted-r1/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-restricted/sb-shared-restricted-r1/Kptfile -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-restricted/sb-shared-restricted-r1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-restricted/sb-shared-restricted-r1/README.md -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-restricted/sb-shared-restricted-r1/nat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-restricted/sb-shared-restricted-r1/nat.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-restricted/sb-shared-restricted-r1/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-restricted/sb-shared-restricted-r1/setters.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-restricted/sb-shared-restricted-r1/subnet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-restricted/sb-shared-restricted-r1/subnet.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-restricted/sb-shared-restricted-r2/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-restricted/sb-shared-restricted-r2/Kptfile -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-restricted/sb-shared-restricted-r2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-restricted/sb-shared-restricted-r2/README.md -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-restricted/sb-shared-restricted-r2/nat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-restricted/sb-shared-restricted-r2/nat.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-restricted/sb-shared-restricted-r2/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-restricted/sb-shared-restricted-r2/setters.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-restricted/sb-shared-restricted-r2/subnet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-restricted/sb-shared-restricted-r2/subnet.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-restricted/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-restricted/setters.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-restricted/vpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-restricted/vpc.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-restricted/vpcsc-perimeter/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-restricted/vpcsc-perimeter/Kptfile -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-restricted/vpcsc-perimeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-restricted/vpcsc-perimeter/README.md -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-restricted/vpcsc-perimeter/access-level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-restricted/vpcsc-perimeter/access-level.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-restricted/vpcsc-perimeter/perimeter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-restricted/vpcsc-perimeter/perimeter.yaml -------------------------------------------------------------------------------- /examples/dual-svpc/vpc-shared-restricted/vpcsc-perimeter/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/dual-svpc/vpc-shared-restricted/vpcsc-perimeter/setters.yaml -------------------------------------------------------------------------------- /examples/iam-audit-config/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/iam-audit-config/Kptfile -------------------------------------------------------------------------------- /examples/iam-audit-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/iam-audit-config/README.md -------------------------------------------------------------------------------- /examples/iam-audit-config/audit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/iam-audit-config/audit.yaml -------------------------------------------------------------------------------- /examples/iam-audit-config/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/iam-audit-config/setters.yaml -------------------------------------------------------------------------------- /examples/simple-bucket/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/simple-bucket/Kptfile -------------------------------------------------------------------------------- /examples/simple-bucket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/simple-bucket/README.md -------------------------------------------------------------------------------- /examples/simple-bucket/bucket.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/simple-bucket/bucket.yaml -------------------------------------------------------------------------------- /examples/simple-bucket/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/simple-bucket/setters.yaml -------------------------------------------------------------------------------- /examples/simple-network/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/simple-network/Kptfile -------------------------------------------------------------------------------- /examples/simple-network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/simple-network/README.md -------------------------------------------------------------------------------- /examples/simple-network/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/simple-network/setters.yaml -------------------------------------------------------------------------------- /examples/simple-network/subnet/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/simple-network/subnet/Kptfile -------------------------------------------------------------------------------- /examples/simple-network/subnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/simple-network/subnet/README.md -------------------------------------------------------------------------------- /examples/simple-network/subnet/nat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/simple-network/subnet/nat.yaml -------------------------------------------------------------------------------- /examples/simple-network/subnet/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/simple-network/subnet/setters.yaml -------------------------------------------------------------------------------- /examples/simple-network/subnet/subnet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/simple-network/subnet/subnet.yaml -------------------------------------------------------------------------------- /examples/simple-network/vpc/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/simple-network/vpc/Kptfile -------------------------------------------------------------------------------- /examples/simple-network/vpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/simple-network/vpc/README.md -------------------------------------------------------------------------------- /examples/simple-network/vpc/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/simple-network/vpc/services.yaml -------------------------------------------------------------------------------- /examples/simple-network/vpc/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/simple-network/vpc/setters.yaml -------------------------------------------------------------------------------- /examples/simple-network/vpc/vpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/simple-network/vpc/vpc.yaml -------------------------------------------------------------------------------- /examples/simple-network/vpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/examples/simple-network/vpn.yaml -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/release-please-config.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/renovate.json -------------------------------------------------------------------------------- /test/integration/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/test/integration/go.mod -------------------------------------------------------------------------------- /test/integration/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/test/integration/go.sum -------------------------------------------------------------------------------- /test/integration/simple-bucket/simple_bucket_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/test/integration/simple-bucket/simple_bucket_test.go -------------------------------------------------------------------------------- /test/integration/simple-network/simple_network_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/test/integration/simple-network/simple_network_test.go -------------------------------------------------------------------------------- /utils/add-attribution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/utils/add-attribution.sh -------------------------------------------------------------------------------- /utils/check_lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/utils/check_lint.sh -------------------------------------------------------------------------------- /utils/component-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/utils/component-versions.sh -------------------------------------------------------------------------------- /utils/fix-attribution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/utils/fix-attribution.sh -------------------------------------------------------------------------------- /utils/fix_lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/utils/fix_lint.sh -------------------------------------------------------------------------------- /utils/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/utils/lint.sh -------------------------------------------------------------------------------- /utils/testutils/create_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/utils/testutils/create_all.sh -------------------------------------------------------------------------------- /utils/testutils/krmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/utils/testutils/krmt.sh -------------------------------------------------------------------------------- /utils/testutils/krmt_helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/blueprints/HEAD/utils/testutils/krmt_helpers.sh --------------------------------------------------------------------------------