├── .gitignore ├── CONTRIBUTING ├── LICENSE ├── README.md ├── community ├── 3-tier │ ├── .gitignore │ ├── DepManager.png │ ├── README.md │ ├── be.jinja │ ├── cleanup.sh │ ├── common.sh │ ├── deployCitiesMicroservices.sh │ ├── dmFunctions.sh │ ├── fe.jinja │ ├── fw.jinja │ ├── handleGCEEnforcer.sh │ ├── http-hc.jinja │ ├── ig-as.jinja │ ├── ig.jinja │ ├── it.jinja │ ├── lb-fw.jinja │ ├── lb-fwd-rule.jinja │ ├── lb-hc.jinja │ ├── lb.jinja │ ├── old │ │ ├── cities-service-ig.yml │ │ ├── cities-service-it.yml │ │ ├── cities-service-lb-fwd-rule.yml │ │ ├── cities-service-vm.yml │ │ ├── cities-ui-ig-as.yml │ │ ├── cities-ui-ig.yml │ │ ├── cities-ui-it.yml │ │ ├── cities-ui-vm.yml │ │ ├── healthchecks.yml │ │ └── instances.yml │ ├── regional-network.jinja │ ├── simple_commands.txt │ ├── startup-scripts │ │ ├── cities-service.sh │ │ └── cities-ui.sh │ ├── subnet.jinja │ ├── url-map.jinja │ ├── vars.properties │ └── web-proxy.jinja ├── README.md ├── apigee │ ├── LICENSE │ ├── README.md │ └── all-in-one │ │ └── jinja │ │ ├── LICENSE │ │ ├── README.md │ │ ├── aio-config.txt │ │ ├── apigee-dp-vm-template.jinja │ │ ├── apigee-edge-template.jinja │ │ ├── apigee-edge.yaml │ │ ├── apigee-firewall-template.jinja │ │ ├── apigee-network-template.jinja │ │ ├── apigee-vm-template.jinja │ │ ├── clean.sh │ │ ├── config │ │ ├── apigee-drupal-devportal-nginx.conf │ │ ├── nginx.conf │ │ └── start │ │ ├── deploy.sh │ │ ├── dp-config.txt │ │ └── monitoring-config.txt ├── dm-scaffolder │ ├── .gitignore │ ├── README.md │ ├── configs.py │ ├── configs.yaml.example │ ├── dm_config.py │ ├── providers │ │ ├── __init__.py │ │ ├── baseprovider.py │ │ ├── firewall.py │ │ ├── folder.py │ │ ├── network.py │ │ ├── project.py │ │ ├── pubsub.py │ │ └── subnetwork.py │ └── scaffolder.py ├── global_properties │ ├── README.md │ └── py │ │ ├── config.yaml │ │ ├── global_properties.yaml │ │ └── vm.py ├── lustre │ ├── CONTRIBUTING.md │ ├── README.md │ ├── lustre-template.yaml │ ├── lustre.jinja │ ├── lustre.jinja.schema │ ├── lustre.yaml │ └── scripts │ │ └── startup-script.sh ├── network │ ├── README.md │ ├── config.yaml │ ├── network.py │ └── network.py.schema ├── pbs │ ├── README.md │ ├── host-network │ │ ├── README.md │ │ ├── pbs-cluster-host.yaml │ │ ├── pbs-host.jinja │ │ └── pbs-host.jinja.schema │ ├── images │ │ ├── shared-vpc.png │ │ ├── standalone-private-ips.png │ │ └── standalone-public-ips.png │ ├── pbs-cluster.yaml │ ├── pbs.jinja │ ├── pbs.jinja.schema │ └── scripts │ │ └── startup-script.py └── spanner │ ├── README.md │ └── jinja │ ├── config.yaml │ └── spanner-template.jinja ├── examples └── v2 │ ├── access_context_manager │ ├── ios_access_level.jinja │ ├── ios_access_level.yaml │ ├── ip_and_os_access_level.jinja │ ├── ip_and_os_access_level.yaml │ ├── mac_os_access_level.jinja │ └── mac_os_access_level.yaml │ ├── access_control │ ├── README.md │ └── access_control.jinja │ ├── build_configuration │ ├── README.md │ ├── add_templates │ │ ├── README.md │ │ ├── jinja │ │ │ ├── use_vm_template.yaml │ │ │ └── vm-template.jinja │ │ └── python │ │ │ ├── use_vm_template.yaml │ │ │ └── vm-template.py │ ├── explicit_dependencies │ │ ├── README.md │ │ ├── backend_frontend_instances.yaml │ │ └── vm-instance.jinja │ ├── use_outputs │ │ ├── README.md │ │ ├── template_with_outputs.jinja │ │ └── use_template_with_outputs.yaml │ ├── vm.yaml │ └── vm_and_bigquery.yaml │ ├── cgc-guide │ ├── README.md │ ├── python-example-1 │ ├── python-example-2 │ ├── yaml-example-1 │ └── yaml-example-2 │ ├── cloud_router │ ├── README.md │ ├── cloud_router.jinja │ └── cloud_router.yaml │ ├── cloudkms │ ├── README.md │ └── python │ │ ├── cloudkms.py │ │ └── config.yaml │ ├── cloudsql │ ├── README.md │ ├── client.example.yaml │ ├── cloudsql.jinja │ ├── cloudsql.jinja.schema │ ├── cloudsql_client.jinja │ ├── cloudsql_client.jinja.schema │ ├── db.example.yaml │ └── scripts │ │ └── cloud-sql-proxy.sh │ ├── common │ ├── container_manifest.yaml │ ├── jinja │ │ ├── container_helper.jinja │ │ ├── container_instance_template.jinja │ │ ├── container_instance_template.jinja.schema │ │ ├── container_vm.jinja │ │ └── container_vm.jinja.schema │ └── python │ │ ├── container_helper.py │ │ ├── container_instance_template.py │ │ ├── container_instance_template.py.schema │ │ ├── container_vm.py │ │ └── container_vm.py.schema │ ├── container_igm │ ├── README.md │ ├── jinja │ │ ├── container_igm.jinja │ │ ├── container_igm.jinja.schema │ │ └── container_igm.yaml │ └── python │ │ ├── container_igm.py │ │ ├── container_igm.py.schema │ │ └── container_igm.yaml │ ├── container_vm │ ├── README.md │ ├── jinja │ │ ├── container_vm.jinja │ │ ├── container_vm.jinja.schema │ │ └── container_vm.yaml │ └── python │ │ ├── container_vm.py │ │ ├── container_vm.py.schema │ │ └── container_vm.yaml │ ├── custom_machine_type │ ├── README.md │ ├── vm.yaml │ ├── vm_template.jinja │ └── vm_template.jinja.schema │ ├── dataproc │ ├── README.md │ ├── dataproc.jinja │ └── dataproc.yaml │ ├── gke │ ├── README.md │ ├── daemonsets │ │ ├── README.md │ │ ├── daemonset.jinja │ │ ├── daemonset.jinja.schema │ │ └── daemonset.yaml │ ├── jinja │ │ ├── cluster.jinja │ │ ├── cluster.jinja.schema │ │ ├── cluster.yaml │ │ ├── deployment.jinja │ │ ├── deployment.jinja.schema │ │ └── deployment.yaml │ └── python │ │ ├── cluster.py │ │ ├── cluster.py.schema │ │ ├── cluster.yaml │ │ ├── deployment.py │ │ ├── deployment.py.schema │ │ └── deployment.yaml │ ├── ha-service │ ├── README.md │ ├── architecture.dia │ ├── architecture.png │ ├── container_helper.py │ ├── container_instance_template.py │ ├── example.yaml │ ├── ha-service.py │ ├── ha-service.py.schema │ ├── jinja │ │ ├── example.yaml │ │ ├── ha-service.jinja │ │ ├── ha-service.jinja.schema │ │ ├── lb-l3.jinja │ │ ├── lb-l3.jinja.schema │ │ ├── service.jinja │ │ └── service.jinja.schema │ ├── lb-l3.py │ ├── python │ │ ├── example.yaml │ │ ├── ha-service.py │ │ ├── ha-service.py.schema │ │ ├── lb-l3.py │ │ ├── lb-l3.py.schema │ │ ├── service.py │ │ └── service.py.schema │ ├── service.py │ └── service.py.schema │ ├── htcondor │ ├── README.md │ ├── applications │ │ ├── Makefile │ │ ├── primes.c │ │ └── submitprimes │ ├── autoscaler │ │ ├── README.md │ │ └── autoscaler.py │ ├── condor-cluster.yaml │ ├── condor-simple.yaml │ ├── condor.jinja │ ├── condor.jinja.schema │ ├── startup-compute-centos.sh │ ├── startup-compute-debian.sh │ ├── startup-master-centos.sh │ ├── startup-master-debian.sh │ ├── startup-submit-centos.sh │ └── startup-submit-debian.sh │ ├── iam │ ├── README.md │ └── jinja │ │ ├── accessible_resource.yaml │ │ ├── pubsub_topic.jinja │ │ ├── service_account.jinja │ │ └── vm.jinja │ ├── iam_custom_role │ ├── README.md │ └── jinja │ │ ├── organization_custom_role.jinja │ │ ├── organization_custom_role.jinja.schema │ │ ├── organization_custom_role.yaml │ │ ├── project_custom_role.jinja │ │ ├── project_custom_role.jinja.schema │ │ └── project_custom_role.yaml │ ├── igm-updater │ ├── README.md │ ├── jinja │ │ ├── frontendver1.yaml │ │ ├── frontendver2.yaml │ │ ├── frontendver3.yaml │ │ ├── ha-service.jinja │ │ ├── ha-service.jinja.schema │ │ ├── instance-template.jinja │ │ ├── lb-l3.jinja │ │ └── service.jinja │ └── python │ │ ├── frontendver1.yaml │ │ ├── frontendver2.yaml │ │ ├── frontendver3.yaml │ │ ├── ha-service.py │ │ ├── ha-service.py.schema │ │ ├── instance-template.py │ │ ├── lb-l3.py │ │ └── service.py │ ├── image_based_igm │ ├── README.md │ ├── image_based_igm.jinja │ └── image_based_igm.py │ ├── instance_pool │ ├── README.md │ ├── jinja │ │ ├── instance-pool.jinja │ │ ├── instance-pool.jinja.schema │ │ └── instance-pool.yaml │ └── python │ │ ├── instance-pool.py │ │ ├── instance-pool.py.schema │ │ └── instance-pool.yaml │ ├── internal_lb │ ├── README.md │ └── python │ │ ├── config.yaml │ │ ├── internal_lb.py │ │ ├── internal_lb.py.schema │ │ ├── internal_lb_example.py │ │ ├── internal_lb_example.py.schema │ │ ├── standalone_test_instance.py │ │ ├── standalone_test_instance.py.schema │ │ ├── test_service.py │ │ └── test_service.py.schema │ ├── internal_lb_haproxy │ ├── README.md │ ├── config.yaml │ ├── haproxy-startup-script.sh │ ├── instance.py │ ├── instance.py.schema │ ├── internal-lb.py │ ├── internal-lb.py.schema │ ├── jinja │ │ ├── config.yaml │ │ ├── instance.jinja │ │ ├── instance.jinja.schema │ │ ├── internal-lb.jinja │ │ └── internal-lb.jinja.schema │ └── python │ │ ├── config.yaml │ │ ├── instance.py │ │ ├── instance.py.schema │ │ ├── internal-lb.py │ │ └── internal-lb.py.schema │ ├── metadata_from_file │ ├── README.md │ ├── jinja │ │ ├── config.yaml │ │ ├── instance.jinja │ │ └── instance.jinja.schema │ ├── python │ │ ├── config.yaml │ │ ├── instance.py │ │ └── instance.py.schema │ └── startup-script.sh │ ├── nodejs │ ├── README.md │ ├── dockerfiles │ │ ├── README.md │ │ ├── mysql │ │ │ ├── Dockerfile │ │ │ └── startup.sh │ │ └── node │ │ │ ├── Dockerfile │ │ │ └── service.js │ ├── jinja │ │ ├── frontend.jinja │ │ ├── frontend.jinja.schema │ │ ├── nodejs.jinja │ │ ├── nodejs.jinja.schema │ │ └── nodejs.yaml │ └── python │ │ ├── frontend.py │ │ ├── frontend.py.schema │ │ ├── nodejs.py │ │ ├── nodejs.py.schema │ │ └── nodejs.yaml │ ├── nodejs_l7 │ ├── README.md │ ├── dockerfiles │ │ ├── Dockerfile │ │ ├── README.md │ │ └── service.js │ ├── jinja │ │ ├── application.jinja │ │ ├── application.jinja.schema │ │ ├── application.yaml │ │ ├── autoscaled_group.jinja │ │ ├── autoscaled_group.jinja.schema │ │ ├── service.jinja │ │ └── service.jinja.schema │ └── python │ │ ├── application.py │ │ ├── application.py.schema │ │ ├── application.yaml │ │ ├── autoscaled_group.py │ │ ├── autoscaled_group.py.schema │ │ ├── service.py │ │ └── service.py.schema │ ├── quick_start │ ├── README.md │ └── vm.yaml │ ├── regional_igm │ ├── regional_igm.py │ ├── regional_igm.py.schema │ └── regional_igm.yaml │ ├── saltstack │ ├── README.md │ ├── jinja │ │ ├── master.jinja │ │ ├── master.jinja.schema │ │ ├── minion.jinja │ │ ├── minion.jinja.schema │ │ ├── salt_cluster.jinja │ │ ├── salt_cluster.jinja.schema │ │ └── salt_cluster.yaml │ ├── master.py │ ├── minion.jinja │ ├── python │ │ ├── master.py │ │ ├── master.py.schema │ │ ├── minion.py │ │ ├── minion.py.schema │ │ ├── salt_cluster.py │ │ ├── salt_cluster.py.schema │ │ └── salt_cluster.yaml │ ├── salt_cluster.jinja │ ├── salt_cluster.jinja.schema │ ├── salt_cluster.yaml │ └── states │ │ ├── index.html │ │ ├── top.sls │ │ └── webserver.sls │ ├── single_vm │ ├── README.md │ ├── jinja │ │ ├── vm.yaml │ │ ├── vm_template.jinja │ │ └── vm_template.jinja.schema │ └── python │ │ ├── vm.yaml │ │ ├── vm_template.py │ │ └── vm_template.py.schema │ ├── sqladmin │ ├── README.md │ ├── jinja │ │ ├── sqladmin.jinja │ │ └── sqladmin.yaml │ └── python │ │ ├── sqladmin.py │ │ └── sqladmin.yaml │ ├── ssl │ ├── crt.pem │ ├── csr.pem │ ├── key.pem │ ├── ssl.py │ └── ssl.yaml │ ├── step_by_step_guide │ ├── create_a_helper_script │ │ ├── README.md │ │ ├── common.py │ │ ├── two-vms.yaml │ │ └── vm-template.py │ ├── step2_create_a_configuration │ │ ├── README.md │ │ └── two-vms.yaml │ ├── step4_use_references │ │ ├── README.md │ │ └── two-vms.yaml │ ├── step5_create_a_template │ │ ├── README.md │ │ ├── jinja │ │ │ ├── two-vms.yaml │ │ │ ├── vm-template-2.jinja │ │ │ └── vm-template.jinja │ │ └── python │ │ │ ├── two-vms.yaml │ │ │ ├── vm-template-2.py │ │ │ └── vm-template.py │ ├── step6_use_multiple_templates │ │ ├── README.md │ │ ├── jinja │ │ │ ├── compute-engine-template.jinja │ │ │ ├── config-with-many-templates.yaml │ │ │ ├── firewall-template.jinja │ │ │ ├── network-template.jinja │ │ │ ├── vm-template-2.jinja │ │ │ └── vm-template.jinja │ │ └── python │ │ │ ├── compute-engine-template.py │ │ │ ├── config-with-many-templates.yaml │ │ │ ├── firewall-template.py │ │ │ ├── network-template.py │ │ │ ├── vm-template-2.py │ │ │ └── vm-template.py │ ├── step7_use_environment_variables │ │ ├── README.md │ │ ├── jinja │ │ │ ├── compute-engine-template.jinja │ │ │ ├── config-with-many-templates.yaml │ │ │ ├── firewall-template.jinja │ │ │ ├── network-template.jinja │ │ │ └── vm-template.jinja │ │ └── python │ │ │ ├── compute-engine-template.py │ │ │ ├── config-with-many-templates.yaml │ │ │ ├── firewall-template.py │ │ │ ├── network-template.py │ │ │ └── vm-template.py │ ├── step8_metadata_and_startup_scripts │ │ ├── README.md │ │ ├── jinja │ │ │ ├── compute-engine-template.jinja │ │ │ ├── config-with-many-templates.yaml │ │ │ ├── firewall-template.jinja │ │ │ ├── network-template.jinja │ │ │ └── vm-template.jinja │ │ └── python │ │ │ ├── compute-engine-template.py │ │ │ ├── config-with-many-templates.yaml │ │ │ ├── firewall-template.py │ │ │ ├── network-template.py │ │ │ └── vm-template.py │ └── step9_update_a_deployment │ │ ├── README.md │ │ ├── jinja │ │ ├── compute-engine-template.jinja │ │ ├── config-with-many-templates.yaml │ │ ├── firewall-template.jinja │ │ ├── network-template.jinja │ │ └── vm-template.jinja │ │ └── python │ │ ├── compute-engine-template.py │ │ ├── config-with-many-templates.yaml │ │ ├── firewall-template.py │ │ ├── network-template.py │ │ └── vm-template.py │ ├── template_modules │ ├── README.md │ ├── jinja │ │ ├── helpers │ │ │ └── common.jinja │ │ ├── use-jinja-template-with-modules.yaml │ │ └── vm-instance-example.jinja │ └── python │ │ ├── helpers │ │ └── common.py │ │ ├── use-python-template-with-modules.yaml │ │ └── vm-instance-example.py │ ├── vm_startup_script │ ├── README.md │ ├── jinja │ │ ├── vm.yaml │ │ ├── vm_template.jinja │ │ └── vm_template.jinja.schema │ └── python │ │ ├── vm.yaml │ │ ├── vm_template.py │ │ └── vm_template.py.schema │ ├── vm_with_disks │ ├── README.md │ ├── jinja │ │ ├── vm_with_disks.jinja │ │ ├── vm_with_disks.jinja.schema │ │ └── vm_with_disks.yaml │ └── python │ │ ├── vm_with_disks.py │ │ ├── vm_with_disks.py.schema │ │ └── vm_with_disks.yaml │ ├── vpn_auto_subnet │ ├── README.md │ ├── vpn-auto-subnet.jinja │ └── vpn-auto-subnet.jinja.schema │ └── waiter │ ├── README.md │ ├── config.yaml │ ├── instance.py │ ├── instance.py.schema │ ├── waiter.jinja │ └── waiter.jinja.schema ├── google ├── resource-snippets │ ├── README.md │ ├── accesscontextmanager-v1 │ │ ├── ios_access_level.jinja │ │ ├── ios_access_level.yaml │ │ ├── ip_and_os_access_level.jinja │ │ ├── ip_and_os_access_level.yaml │ │ ├── mac_os_access_level.jinja │ │ └── mac_os_access_level.yaml │ ├── accesscontextmanager-v1beta1 │ │ ├── ios_access_level.jinja │ │ ├── ios_access_level.yaml │ │ ├── ip_and_os_access_level.jinja │ │ ├── ip_and_os_access_level.yaml │ │ ├── mac_os_access_level.jinja │ │ └── mac_os_access_level.yaml │ ├── appengine-v1 │ │ ├── version.jinja │ │ └── version.yaml │ ├── bigquery-v2 │ │ ├── README.md │ │ ├── alternatives │ │ │ ├── krm │ │ │ │ ├── Kptfile │ │ │ │ └── bigquery.yaml │ │ │ └── tf │ │ │ │ └── bigquery.tf │ │ ├── bigquery.jinja │ │ ├── bigquery.yaml │ │ └── test_alternatives.sh │ ├── bigtableadmin-v2 │ │ ├── bigtable.jinja │ │ └── bigtable.yaml │ ├── cloudfunctions-v1 │ │ ├── configurable_functions.jinja │ │ ├── configurable_functions.yaml │ │ ├── empty_bucket_in_function.jinja │ │ └── empty_bucket_in_function.yaml │ ├── cloudfunctions-v2beta │ │ ├── configurable_functions.jinja │ │ ├── configurable_functions.yaml │ │ ├── empty_bucket_in_function.jinja │ │ ├── empty_bucket_in_function.yaml │ │ ├── function_iam.jinja │ │ └── function_iam.yaml │ ├── cloudkms-v1 │ │ ├── README.md │ │ ├── alternatives │ │ │ ├── krm │ │ │ │ ├── Kptfile │ │ │ │ └── cloudkms.yaml │ │ │ └── tf │ │ │ │ └── cloudkms.tf │ │ ├── kms.jinja │ │ ├── kms.yaml │ │ └── test_alternatives.sh │ ├── cloudresourcemanager-v1 │ │ ├── policies.jinja │ │ ├── project.jinja │ │ ├── project.yaml │ │ ├── project_lien.yaml │ │ ├── virtualFolderMember.yaml │ │ ├── virtualOrganizationMember.yaml │ │ └── virtualProjectMember.yaml │ ├── cloudresourcemanager-v2 │ │ └── folders │ │ │ ├── README.md │ │ │ ├── folder.jinja │ │ │ └── folder.yaml │ ├── compute-alpha │ │ ├── instance_group_manager.yaml │ │ └── instance_group_manager_with_auto_healing.yaml │ ├── compute-beta │ │ ├── instance_group_manager.yaml │ │ └── instance_group_manager_with_auto_healing.yaml │ ├── compute-v1 │ │ ├── address.jinja │ │ ├── address.yaml │ │ ├── alternatives-firewall │ │ │ └── tf │ │ │ │ └── firewall.tf │ │ ├── autoscaler.py │ │ ├── autoscaler.yaml │ │ ├── backend_service.jinja │ │ ├── backend_service.yaml │ │ ├── certificate.txt │ │ ├── cloud_router.py │ │ ├── cloud_router.yaml │ │ ├── compute_constants.py │ │ ├── compute_resource_util.py │ │ ├── disk.jinja │ │ ├── disk.yaml │ │ ├── external-vpn-gateway.jinja │ │ ├── external-vpn-gateway.yaml │ │ ├── firewall.jinja │ │ ├── firewall.yaml │ │ ├── forwarding_rule.jinja │ │ ├── forwarding_rule.yaml │ │ ├── global_address.jinja │ │ ├── global_address.yaml │ │ ├── global_address_with_specific_address.yaml │ │ ├── global_forwarding_rule.jinja │ │ ├── global_forwarding_rule.yaml │ │ ├── health_check.py │ │ ├── health_check.yaml │ │ ├── healthz_server.py │ │ ├── http_health_check.jinja │ │ ├── http_health_check.yaml │ │ ├── image.jinja │ │ ├── image.yaml │ │ ├── instance.jinja │ │ ├── instance.yaml │ │ ├── instance_group.py │ │ ├── instance_group.yaml │ │ ├── instance_group_manager.jinja │ │ ├── instance_group_manager.yaml │ │ ├── instance_group_manager_with_auto_healing.jinja │ │ ├── instance_template.jinja │ │ ├── instance_template.yaml │ │ ├── instance_without_labels.jinja │ │ ├── instance_without_labels.yaml │ │ ├── key.txt │ │ ├── network.jinja │ │ ├── network.yaml │ │ ├── network_with_peering.jinja │ │ ├── network_with_peering.yaml │ │ ├── region_backend_service.py │ │ ├── region_backend_service.yaml │ │ ├── region_health_check.jinja │ │ ├── region_health_check.yaml │ │ ├── route.jinja │ │ ├── route.yaml │ │ ├── subnetworks.py │ │ ├── subnetworks.yaml │ │ ├── target_http_proxy.jinja │ │ ├── target_http_proxy.yaml │ │ ├── target_https_proxy.py │ │ ├── target_https_proxy.yaml │ │ ├── target_instance.jinja │ │ ├── target_instance.yaml │ │ ├── target_pool.jinja │ │ ├── target_pool.yaml │ │ ├── target_ssl_proxy.py │ │ ├── target_ssl_proxy.yaml │ │ ├── target_tcp_proxy.py │ │ ├── target_tcp_proxy.yaml │ │ ├── test_alternatives_firewall.sh │ │ ├── url_map.jinja │ │ ├── url_map.yaml │ │ ├── vpn-gateway.jinja │ │ ├── vpn-gateway.yaml │ │ ├── vpn_tunnel.jinja │ │ └── vpn_tunnel.yaml │ ├── container-v1 │ │ ├── gke_provider_cluster.jinja │ │ ├── gke_provider_cluster.jinja.schema │ │ ├── gke_provider_cluster.yaml │ │ ├── replication_controller.jinja │ │ └── replication_controller.yaml │ ├── container-v1beta1 │ │ └── gke_provider_cluster.yaml │ ├── dataproc-v1 │ │ ├── README.md │ │ ├── dataproc.jinja │ │ └── dataproc.yaml │ ├── dns-v1 │ │ ├── all_supported_record_types.jinja │ │ ├── all_supported_record_types.yaml │ │ ├── managed-zone.yaml │ │ ├── one_a_record.jinja │ │ └── one_a_record.yaml │ ├── dns-v1beta2 │ │ ├── dns_private.jinja │ │ └── dns_private.yaml │ ├── file-v1beta1 │ │ └── instance.yaml │ ├── functions-backed-type │ │ ├── api.json │ │ ├── cloud-sql-type-deployment.yaml │ │ ├── function │ │ │ ├── function.js │ │ │ ├── googleApiHelper.js │ │ │ ├── instanceDelete.js │ │ │ ├── instanceGet.js │ │ │ ├── instanceInsert.js │ │ │ ├── instancePatch.js │ │ │ └── package.json │ │ └── readme.md │ ├── iam-v1 │ │ ├── README.md │ │ ├── configurable_service_accounts.jinja │ │ ├── configurable_service_accounts.yaml │ │ ├── header_set_iam_policy.yaml │ │ ├── iam-v1-header-provider.yaml │ │ ├── roles.jinja │ │ ├── roles.yaml │ │ ├── service_accounts.jinja │ │ └── service_accounts.yaml │ ├── logging-v2 │ │ ├── README.md │ │ ├── alternatives │ │ │ └── tf │ │ │ │ └── logging.tf │ │ ├── configurable_logging.jinja │ │ ├── configurable_logging.yaml │ │ ├── logging.jinja │ │ ├── logging.yaml │ │ └── test_alternatives.sh │ ├── monitoring-v3 │ │ ├── alert_policies.yaml │ │ ├── groups.yaml │ │ ├── metric_descriptors.yaml │ │ ├── notification_channels.yaml │ │ ├── uptime_check_configs.jinja │ │ └── uptime_check_configs.yaml │ ├── pubsub-v1 │ │ ├── README.md │ │ ├── alternatives │ │ │ ├── krm │ │ │ │ ├── Kptfile │ │ │ │ └── pubsub.yaml │ │ │ └── tf │ │ │ │ └── pubsub.tf │ │ ├── pubsub.jinja │ │ ├── pubsub.yaml │ │ └── test_alternatives.sh │ ├── redis-v1 │ │ ├── instance.yaml │ │ └── memorystore-instance.jinja │ ├── redis-v1beta1 │ │ ├── instance.yaml │ │ └── memorystore-instance.jinja │ ├── runtimeconfig-v1beta1 │ │ ├── configurable_runtimeconfig.jinja │ │ ├── configurable_runtimeconfig.yaml │ │ ├── runtimeconfig.jinja │ │ └── runtimeconfig.yaml │ ├── serviceusage-v1 │ │ ├── enable.jinja │ │ └── enable.yaml │ ├── spanner-v1 │ │ ├── spanner.jinja │ │ └── spanner.yaml │ ├── sqladmin-v1beta4 │ │ ├── cloudsql.jinja │ │ ├── cloudsql.yaml │ │ ├── cloudsql_with_user.jinja │ │ └── cloudsql_with_user.yaml │ ├── storage-v1 │ │ ├── bucket.jinja │ │ ├── bucket.yaml │ │ ├── bucket_acl.jinja │ │ ├── bucket_acl.yaml │ │ ├── multi_notification.yaml │ │ ├── notification.jinja │ │ └── single_notification.yaml │ └── tpu-v1alpha1 │ │ ├── tpu.py │ │ └── tpu.yaml └── solutions │ └── README.md ├── quickstart.md ├── templates ├── autoscaled_group.py ├── autoscaled_group.py.schema ├── common.py ├── container_helper.py ├── container_instance.py ├── container_instance.py.schema ├── container_instance_template.py ├── default.py ├── http_load_balancer.py ├── http_load_balancer.py.schema ├── replicated_service.py ├── replicated_service.py.schema ├── software_status.py ├── software_status.py.schema ├── software_status.sh.tmpl ├── software_status_script.py ├── software_status_script.py.schema ├── vm_instance.py ├── vm_instance.py.schema ├── vm_instance_template.py └── vm_multiple_instances.py ├── tools ├── alt-testing │ ├── README.md │ ├── create-projects.sh │ └── delete-projects.sh ├── genconfig │ ├── README.md │ ├── example │ │ ├── config.yaml │ │ ├── generated.jinja │ │ ├── generated.jinja.schema │ │ └── resources.txt │ └── genconfig.py └── scheduled-deployments │ ├── README.md │ ├── functions │ ├── constants.js │ ├── datastore.js │ ├── deploy.js │ ├── index.js │ ├── logging.js │ ├── package.json │ ├── schedule.js │ └── test │ │ ├── datastore_test.js │ │ ├── deploy_test.js │ │ ├── index_test.js │ │ └── schedule_test.js │ ├── openapi.json │ ├── parameters_init.sh │ ├── sd_config.yaml │ ├── sd_template.py │ └── tests │ ├── sample_deployment.json │ ├── test_deployment.sh │ └── test_scheduling.sh └── walkthroughtutorial.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/README.md -------------------------------------------------------------------------------- /community/3-tier/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/.gitignore -------------------------------------------------------------------------------- /community/3-tier/DepManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/DepManager.png -------------------------------------------------------------------------------- /community/3-tier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/README.md -------------------------------------------------------------------------------- /community/3-tier/be.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/be.jinja -------------------------------------------------------------------------------- /community/3-tier/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/cleanup.sh -------------------------------------------------------------------------------- /community/3-tier/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/common.sh -------------------------------------------------------------------------------- /community/3-tier/deployCitiesMicroservices.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/deployCitiesMicroservices.sh -------------------------------------------------------------------------------- /community/3-tier/dmFunctions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/dmFunctions.sh -------------------------------------------------------------------------------- /community/3-tier/fe.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/fe.jinja -------------------------------------------------------------------------------- /community/3-tier/fw.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/fw.jinja -------------------------------------------------------------------------------- /community/3-tier/handleGCEEnforcer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/handleGCEEnforcer.sh -------------------------------------------------------------------------------- /community/3-tier/http-hc.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/http-hc.jinja -------------------------------------------------------------------------------- /community/3-tier/ig-as.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/ig-as.jinja -------------------------------------------------------------------------------- /community/3-tier/ig.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/ig.jinja -------------------------------------------------------------------------------- /community/3-tier/it.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/it.jinja -------------------------------------------------------------------------------- /community/3-tier/lb-fw.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/lb-fw.jinja -------------------------------------------------------------------------------- /community/3-tier/lb-fwd-rule.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/lb-fwd-rule.jinja -------------------------------------------------------------------------------- /community/3-tier/lb-hc.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/lb-hc.jinja -------------------------------------------------------------------------------- /community/3-tier/lb.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/lb.jinja -------------------------------------------------------------------------------- /community/3-tier/old/cities-service-ig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/old/cities-service-ig.yml -------------------------------------------------------------------------------- /community/3-tier/old/cities-service-it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/old/cities-service-it.yml -------------------------------------------------------------------------------- /community/3-tier/old/cities-service-lb-fwd-rule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/old/cities-service-lb-fwd-rule.yml -------------------------------------------------------------------------------- /community/3-tier/old/cities-service-vm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/old/cities-service-vm.yml -------------------------------------------------------------------------------- /community/3-tier/old/cities-ui-ig-as.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/old/cities-ui-ig-as.yml -------------------------------------------------------------------------------- /community/3-tier/old/cities-ui-ig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/old/cities-ui-ig.yml -------------------------------------------------------------------------------- /community/3-tier/old/cities-ui-it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/old/cities-ui-it.yml -------------------------------------------------------------------------------- /community/3-tier/old/cities-ui-vm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/old/cities-ui-vm.yml -------------------------------------------------------------------------------- /community/3-tier/old/healthchecks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/old/healthchecks.yml -------------------------------------------------------------------------------- /community/3-tier/old/instances.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/old/instances.yml -------------------------------------------------------------------------------- /community/3-tier/regional-network.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/regional-network.jinja -------------------------------------------------------------------------------- /community/3-tier/simple_commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/simple_commands.txt -------------------------------------------------------------------------------- /community/3-tier/startup-scripts/cities-service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/startup-scripts/cities-service.sh -------------------------------------------------------------------------------- /community/3-tier/startup-scripts/cities-ui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/startup-scripts/cities-ui.sh -------------------------------------------------------------------------------- /community/3-tier/subnet.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/subnet.jinja -------------------------------------------------------------------------------- /community/3-tier/url-map.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/url-map.jinja -------------------------------------------------------------------------------- /community/3-tier/vars.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/vars.properties -------------------------------------------------------------------------------- /community/3-tier/web-proxy.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/3-tier/web-proxy.jinja -------------------------------------------------------------------------------- /community/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/README.md -------------------------------------------------------------------------------- /community/apigee/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/apigee/LICENSE -------------------------------------------------------------------------------- /community/apigee/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/apigee/README.md -------------------------------------------------------------------------------- /community/apigee/all-in-one/jinja/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/apigee/all-in-one/jinja/LICENSE -------------------------------------------------------------------------------- /community/apigee/all-in-one/jinja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/apigee/all-in-one/jinja/README.md -------------------------------------------------------------------------------- /community/apigee/all-in-one/jinja/aio-config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/apigee/all-in-one/jinja/aio-config.txt -------------------------------------------------------------------------------- /community/apigee/all-in-one/jinja/apigee-dp-vm-template.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/apigee/all-in-one/jinja/apigee-dp-vm-template.jinja -------------------------------------------------------------------------------- /community/apigee/all-in-one/jinja/apigee-edge-template.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/apigee/all-in-one/jinja/apigee-edge-template.jinja -------------------------------------------------------------------------------- /community/apigee/all-in-one/jinja/apigee-edge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/apigee/all-in-one/jinja/apigee-edge.yaml -------------------------------------------------------------------------------- /community/apigee/all-in-one/jinja/apigee-firewall-template.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/apigee/all-in-one/jinja/apigee-firewall-template.jinja -------------------------------------------------------------------------------- /community/apigee/all-in-one/jinja/apigee-network-template.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/apigee/all-in-one/jinja/apigee-network-template.jinja -------------------------------------------------------------------------------- /community/apigee/all-in-one/jinja/apigee-vm-template.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/apigee/all-in-one/jinja/apigee-vm-template.jinja -------------------------------------------------------------------------------- /community/apigee/all-in-one/jinja/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/apigee/all-in-one/jinja/clean.sh -------------------------------------------------------------------------------- /community/apigee/all-in-one/jinja/config/apigee-drupal-devportal-nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/apigee/all-in-one/jinja/config/apigee-drupal-devportal-nginx.conf -------------------------------------------------------------------------------- /community/apigee/all-in-one/jinja/config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/apigee/all-in-one/jinja/config/nginx.conf -------------------------------------------------------------------------------- /community/apigee/all-in-one/jinja/config/start: -------------------------------------------------------------------------------- 1 | exec tail -f /dev/null & wait ${!} -------------------------------------------------------------------------------- /community/apigee/all-in-one/jinja/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/apigee/all-in-one/jinja/deploy.sh -------------------------------------------------------------------------------- /community/apigee/all-in-one/jinja/dp-config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/apigee/all-in-one/jinja/dp-config.txt -------------------------------------------------------------------------------- /community/apigee/all-in-one/jinja/monitoring-config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/apigee/all-in-one/jinja/monitoring-config.txt -------------------------------------------------------------------------------- /community/dm-scaffolder/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.p1 3 | configs.yaml 4 | sample_output 5 | -------------------------------------------------------------------------------- /community/dm-scaffolder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/dm-scaffolder/README.md -------------------------------------------------------------------------------- /community/dm-scaffolder/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/dm-scaffolder/configs.py -------------------------------------------------------------------------------- /community/dm-scaffolder/configs.yaml.example: -------------------------------------------------------------------------------- 1 | organization_id: '1234567890' 2 | cft_relative_path: ../ 3 | folders_list_cache: 4 | -------------------------------------------------------------------------------- /community/dm-scaffolder/dm_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/dm-scaffolder/dm_config.py -------------------------------------------------------------------------------- /community/dm-scaffolder/providers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /community/dm-scaffolder/providers/baseprovider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/dm-scaffolder/providers/baseprovider.py -------------------------------------------------------------------------------- /community/dm-scaffolder/providers/firewall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/dm-scaffolder/providers/firewall.py -------------------------------------------------------------------------------- /community/dm-scaffolder/providers/folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/dm-scaffolder/providers/folder.py -------------------------------------------------------------------------------- /community/dm-scaffolder/providers/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/dm-scaffolder/providers/network.py -------------------------------------------------------------------------------- /community/dm-scaffolder/providers/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/dm-scaffolder/providers/project.py -------------------------------------------------------------------------------- /community/dm-scaffolder/providers/pubsub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/dm-scaffolder/providers/pubsub.py -------------------------------------------------------------------------------- /community/dm-scaffolder/providers/subnetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/dm-scaffolder/providers/subnetwork.py -------------------------------------------------------------------------------- /community/dm-scaffolder/scaffolder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/dm-scaffolder/scaffolder.py -------------------------------------------------------------------------------- /community/global_properties/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/global_properties/README.md -------------------------------------------------------------------------------- /community/global_properties/py/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/global_properties/py/config.yaml -------------------------------------------------------------------------------- /community/global_properties/py/global_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/global_properties/py/global_properties.yaml -------------------------------------------------------------------------------- /community/global_properties/py/vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/global_properties/py/vm.py -------------------------------------------------------------------------------- /community/lustre/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/lustre/CONTRIBUTING.md -------------------------------------------------------------------------------- /community/lustre/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/lustre/README.md -------------------------------------------------------------------------------- /community/lustre/lustre-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/lustre/lustre-template.yaml -------------------------------------------------------------------------------- /community/lustre/lustre.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/lustre/lustre.jinja -------------------------------------------------------------------------------- /community/lustre/lustre.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/lustre/lustre.jinja.schema -------------------------------------------------------------------------------- /community/lustre/lustre.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/lustre/lustre.yaml -------------------------------------------------------------------------------- /community/lustre/scripts/startup-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/lustre/scripts/startup-script.sh -------------------------------------------------------------------------------- /community/network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/network/README.md -------------------------------------------------------------------------------- /community/network/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/network/config.yaml -------------------------------------------------------------------------------- /community/network/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/network/network.py -------------------------------------------------------------------------------- /community/network/network.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/network/network.py.schema -------------------------------------------------------------------------------- /community/pbs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/pbs/README.md -------------------------------------------------------------------------------- /community/pbs/host-network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/pbs/host-network/README.md -------------------------------------------------------------------------------- /community/pbs/host-network/pbs-cluster-host.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/pbs/host-network/pbs-cluster-host.yaml -------------------------------------------------------------------------------- /community/pbs/host-network/pbs-host.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/pbs/host-network/pbs-host.jinja -------------------------------------------------------------------------------- /community/pbs/host-network/pbs-host.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/pbs/host-network/pbs-host.jinja.schema -------------------------------------------------------------------------------- /community/pbs/images/shared-vpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/pbs/images/shared-vpc.png -------------------------------------------------------------------------------- /community/pbs/images/standalone-private-ips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/pbs/images/standalone-private-ips.png -------------------------------------------------------------------------------- /community/pbs/images/standalone-public-ips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/pbs/images/standalone-public-ips.png -------------------------------------------------------------------------------- /community/pbs/pbs-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/pbs/pbs-cluster.yaml -------------------------------------------------------------------------------- /community/pbs/pbs.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/pbs/pbs.jinja -------------------------------------------------------------------------------- /community/pbs/pbs.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/pbs/pbs.jinja.schema -------------------------------------------------------------------------------- /community/pbs/scripts/startup-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/pbs/scripts/startup-script.py -------------------------------------------------------------------------------- /community/spanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/spanner/README.md -------------------------------------------------------------------------------- /community/spanner/jinja/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/spanner/jinja/config.yaml -------------------------------------------------------------------------------- /community/spanner/jinja/spanner-template.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/community/spanner/jinja/spanner-template.jinja -------------------------------------------------------------------------------- /examples/v2/access_context_manager/ios_access_level.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/access_context_manager/ios_access_level.jinja -------------------------------------------------------------------------------- /examples/v2/access_context_manager/ios_access_level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/access_context_manager/ios_access_level.yaml -------------------------------------------------------------------------------- /examples/v2/access_context_manager/ip_and_os_access_level.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/access_context_manager/ip_and_os_access_level.jinja -------------------------------------------------------------------------------- /examples/v2/access_context_manager/ip_and_os_access_level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/access_context_manager/ip_and_os_access_level.yaml -------------------------------------------------------------------------------- /examples/v2/access_context_manager/mac_os_access_level.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/access_context_manager/mac_os_access_level.jinja -------------------------------------------------------------------------------- /examples/v2/access_context_manager/mac_os_access_level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/access_context_manager/mac_os_access_level.yaml -------------------------------------------------------------------------------- /examples/v2/access_control/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/access_control/README.md -------------------------------------------------------------------------------- /examples/v2/access_control/access_control.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/access_control/access_control.jinja -------------------------------------------------------------------------------- /examples/v2/build_configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/build_configuration/README.md -------------------------------------------------------------------------------- /examples/v2/build_configuration/add_templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/build_configuration/add_templates/README.md -------------------------------------------------------------------------------- /examples/v2/build_configuration/add_templates/jinja/use_vm_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/build_configuration/add_templates/jinja/use_vm_template.yaml -------------------------------------------------------------------------------- /examples/v2/build_configuration/add_templates/jinja/vm-template.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/build_configuration/add_templates/jinja/vm-template.jinja -------------------------------------------------------------------------------- /examples/v2/build_configuration/add_templates/python/use_vm_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/build_configuration/add_templates/python/use_vm_template.yaml -------------------------------------------------------------------------------- /examples/v2/build_configuration/add_templates/python/vm-template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/build_configuration/add_templates/python/vm-template.py -------------------------------------------------------------------------------- /examples/v2/build_configuration/explicit_dependencies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/build_configuration/explicit_dependencies/README.md -------------------------------------------------------------------------------- /examples/v2/build_configuration/explicit_dependencies/backend_frontend_instances.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/build_configuration/explicit_dependencies/backend_frontend_instances.yaml -------------------------------------------------------------------------------- /examples/v2/build_configuration/explicit_dependencies/vm-instance.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/build_configuration/explicit_dependencies/vm-instance.jinja -------------------------------------------------------------------------------- /examples/v2/build_configuration/use_outputs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/build_configuration/use_outputs/README.md -------------------------------------------------------------------------------- /examples/v2/build_configuration/use_outputs/template_with_outputs.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/build_configuration/use_outputs/template_with_outputs.jinja -------------------------------------------------------------------------------- /examples/v2/build_configuration/use_outputs/use_template_with_outputs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/build_configuration/use_outputs/use_template_with_outputs.yaml -------------------------------------------------------------------------------- /examples/v2/build_configuration/vm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/build_configuration/vm.yaml -------------------------------------------------------------------------------- /examples/v2/build_configuration/vm_and_bigquery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/build_configuration/vm_and_bigquery.yaml -------------------------------------------------------------------------------- /examples/v2/cgc-guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/cgc-guide/README.md -------------------------------------------------------------------------------- /examples/v2/cgc-guide/python-example-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/cgc-guide/python-example-1 -------------------------------------------------------------------------------- /examples/v2/cgc-guide/python-example-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/cgc-guide/python-example-2 -------------------------------------------------------------------------------- /examples/v2/cgc-guide/yaml-example-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/cgc-guide/yaml-example-1 -------------------------------------------------------------------------------- /examples/v2/cgc-guide/yaml-example-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/cgc-guide/yaml-example-2 -------------------------------------------------------------------------------- /examples/v2/cloud_router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/cloud_router/README.md -------------------------------------------------------------------------------- /examples/v2/cloud_router/cloud_router.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/cloud_router/cloud_router.jinja -------------------------------------------------------------------------------- /examples/v2/cloud_router/cloud_router.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/cloud_router/cloud_router.yaml -------------------------------------------------------------------------------- /examples/v2/cloudkms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/cloudkms/README.md -------------------------------------------------------------------------------- /examples/v2/cloudkms/python/cloudkms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/cloudkms/python/cloudkms.py -------------------------------------------------------------------------------- /examples/v2/cloudkms/python/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/cloudkms/python/config.yaml -------------------------------------------------------------------------------- /examples/v2/cloudsql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/cloudsql/README.md -------------------------------------------------------------------------------- /examples/v2/cloudsql/client.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/cloudsql/client.example.yaml -------------------------------------------------------------------------------- /examples/v2/cloudsql/cloudsql.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/cloudsql/cloudsql.jinja -------------------------------------------------------------------------------- /examples/v2/cloudsql/cloudsql.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/cloudsql/cloudsql.jinja.schema -------------------------------------------------------------------------------- /examples/v2/cloudsql/cloudsql_client.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/cloudsql/cloudsql_client.jinja -------------------------------------------------------------------------------- /examples/v2/cloudsql/cloudsql_client.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/cloudsql/cloudsql_client.jinja.schema -------------------------------------------------------------------------------- /examples/v2/cloudsql/db.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/cloudsql/db.example.yaml -------------------------------------------------------------------------------- /examples/v2/cloudsql/scripts/cloud-sql-proxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/cloudsql/scripts/cloud-sql-proxy.sh -------------------------------------------------------------------------------- /examples/v2/common/container_manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/common/container_manifest.yaml -------------------------------------------------------------------------------- /examples/v2/common/jinja/container_helper.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/common/jinja/container_helper.jinja -------------------------------------------------------------------------------- /examples/v2/common/jinja/container_instance_template.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/common/jinja/container_instance_template.jinja -------------------------------------------------------------------------------- /examples/v2/common/jinja/container_instance_template.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/common/jinja/container_instance_template.jinja.schema -------------------------------------------------------------------------------- /examples/v2/common/jinja/container_vm.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/common/jinja/container_vm.jinja -------------------------------------------------------------------------------- /examples/v2/common/jinja/container_vm.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/common/jinja/container_vm.jinja.schema -------------------------------------------------------------------------------- /examples/v2/common/python/container_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/common/python/container_helper.py -------------------------------------------------------------------------------- /examples/v2/common/python/container_instance_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/common/python/container_instance_template.py -------------------------------------------------------------------------------- /examples/v2/common/python/container_instance_template.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/common/python/container_instance_template.py.schema -------------------------------------------------------------------------------- /examples/v2/common/python/container_vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/common/python/container_vm.py -------------------------------------------------------------------------------- /examples/v2/common/python/container_vm.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/common/python/container_vm.py.schema -------------------------------------------------------------------------------- /examples/v2/container_igm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/container_igm/README.md -------------------------------------------------------------------------------- /examples/v2/container_igm/jinja/container_igm.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/container_igm/jinja/container_igm.jinja -------------------------------------------------------------------------------- /examples/v2/container_igm/jinja/container_igm.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/container_igm/jinja/container_igm.jinja.schema -------------------------------------------------------------------------------- /examples/v2/container_igm/jinja/container_igm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/container_igm/jinja/container_igm.yaml -------------------------------------------------------------------------------- /examples/v2/container_igm/python/container_igm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/container_igm/python/container_igm.py -------------------------------------------------------------------------------- /examples/v2/container_igm/python/container_igm.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/container_igm/python/container_igm.py.schema -------------------------------------------------------------------------------- /examples/v2/container_igm/python/container_igm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/container_igm/python/container_igm.yaml -------------------------------------------------------------------------------- /examples/v2/container_vm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/container_vm/README.md -------------------------------------------------------------------------------- /examples/v2/container_vm/jinja/container_vm.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/container_vm/jinja/container_vm.jinja -------------------------------------------------------------------------------- /examples/v2/container_vm/jinja/container_vm.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/container_vm/jinja/container_vm.jinja.schema -------------------------------------------------------------------------------- /examples/v2/container_vm/jinja/container_vm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/container_vm/jinja/container_vm.yaml -------------------------------------------------------------------------------- /examples/v2/container_vm/python/container_vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/container_vm/python/container_vm.py -------------------------------------------------------------------------------- /examples/v2/container_vm/python/container_vm.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/container_vm/python/container_vm.py.schema -------------------------------------------------------------------------------- /examples/v2/container_vm/python/container_vm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/container_vm/python/container_vm.yaml -------------------------------------------------------------------------------- /examples/v2/custom_machine_type/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/custom_machine_type/README.md -------------------------------------------------------------------------------- /examples/v2/custom_machine_type/vm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/custom_machine_type/vm.yaml -------------------------------------------------------------------------------- /examples/v2/custom_machine_type/vm_template.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/custom_machine_type/vm_template.jinja -------------------------------------------------------------------------------- /examples/v2/custom_machine_type/vm_template.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/custom_machine_type/vm_template.jinja.schema -------------------------------------------------------------------------------- /examples/v2/dataproc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/dataproc/README.md -------------------------------------------------------------------------------- /examples/v2/dataproc/dataproc.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/dataproc/dataproc.jinja -------------------------------------------------------------------------------- /examples/v2/dataproc/dataproc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/dataproc/dataproc.yaml -------------------------------------------------------------------------------- /examples/v2/gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/gke/README.md -------------------------------------------------------------------------------- /examples/v2/gke/daemonsets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/gke/daemonsets/README.md -------------------------------------------------------------------------------- /examples/v2/gke/daemonsets/daemonset.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/gke/daemonsets/daemonset.jinja -------------------------------------------------------------------------------- /examples/v2/gke/daemonsets/daemonset.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/gke/daemonsets/daemonset.jinja.schema -------------------------------------------------------------------------------- /examples/v2/gke/daemonsets/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/gke/daemonsets/daemonset.yaml -------------------------------------------------------------------------------- /examples/v2/gke/jinja/cluster.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/gke/jinja/cluster.jinja -------------------------------------------------------------------------------- /examples/v2/gke/jinja/cluster.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/gke/jinja/cluster.jinja.schema -------------------------------------------------------------------------------- /examples/v2/gke/jinja/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/gke/jinja/cluster.yaml -------------------------------------------------------------------------------- /examples/v2/gke/jinja/deployment.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/gke/jinja/deployment.jinja -------------------------------------------------------------------------------- /examples/v2/gke/jinja/deployment.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/gke/jinja/deployment.jinja.schema -------------------------------------------------------------------------------- /examples/v2/gke/jinja/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/gke/jinja/deployment.yaml -------------------------------------------------------------------------------- /examples/v2/gke/python/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/gke/python/cluster.py -------------------------------------------------------------------------------- /examples/v2/gke/python/cluster.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/gke/python/cluster.py.schema -------------------------------------------------------------------------------- /examples/v2/gke/python/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/gke/python/cluster.yaml -------------------------------------------------------------------------------- /examples/v2/gke/python/deployment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/gke/python/deployment.py -------------------------------------------------------------------------------- /examples/v2/gke/python/deployment.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/gke/python/deployment.py.schema -------------------------------------------------------------------------------- /examples/v2/gke/python/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/gke/python/deployment.yaml -------------------------------------------------------------------------------- /examples/v2/ha-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ha-service/README.md -------------------------------------------------------------------------------- /examples/v2/ha-service/architecture.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ha-service/architecture.dia -------------------------------------------------------------------------------- /examples/v2/ha-service/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ha-service/architecture.png -------------------------------------------------------------------------------- /examples/v2/ha-service/container_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ha-service/container_helper.py -------------------------------------------------------------------------------- /examples/v2/ha-service/container_instance_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ha-service/container_instance_template.py -------------------------------------------------------------------------------- /examples/v2/ha-service/example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ha-service/example.yaml -------------------------------------------------------------------------------- /examples/v2/ha-service/ha-service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ha-service/ha-service.py -------------------------------------------------------------------------------- /examples/v2/ha-service/ha-service.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ha-service/ha-service.py.schema -------------------------------------------------------------------------------- /examples/v2/ha-service/jinja/example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ha-service/jinja/example.yaml -------------------------------------------------------------------------------- /examples/v2/ha-service/jinja/ha-service.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ha-service/jinja/ha-service.jinja -------------------------------------------------------------------------------- /examples/v2/ha-service/jinja/ha-service.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ha-service/jinja/ha-service.jinja.schema -------------------------------------------------------------------------------- /examples/v2/ha-service/jinja/lb-l3.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ha-service/jinja/lb-l3.jinja -------------------------------------------------------------------------------- /examples/v2/ha-service/jinja/lb-l3.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ha-service/jinja/lb-l3.jinja.schema -------------------------------------------------------------------------------- /examples/v2/ha-service/jinja/service.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ha-service/jinja/service.jinja -------------------------------------------------------------------------------- /examples/v2/ha-service/jinja/service.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ha-service/jinja/service.jinja.schema -------------------------------------------------------------------------------- /examples/v2/ha-service/lb-l3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ha-service/lb-l3.py -------------------------------------------------------------------------------- /examples/v2/ha-service/python/example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ha-service/python/example.yaml -------------------------------------------------------------------------------- /examples/v2/ha-service/python/ha-service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ha-service/python/ha-service.py -------------------------------------------------------------------------------- /examples/v2/ha-service/python/ha-service.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ha-service/python/ha-service.py.schema -------------------------------------------------------------------------------- /examples/v2/ha-service/python/lb-l3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ha-service/python/lb-l3.py -------------------------------------------------------------------------------- /examples/v2/ha-service/python/lb-l3.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ha-service/python/lb-l3.py.schema -------------------------------------------------------------------------------- /examples/v2/ha-service/python/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ha-service/python/service.py -------------------------------------------------------------------------------- /examples/v2/ha-service/python/service.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ha-service/python/service.py.schema -------------------------------------------------------------------------------- /examples/v2/ha-service/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ha-service/service.py -------------------------------------------------------------------------------- /examples/v2/ha-service/service.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ha-service/service.py.schema -------------------------------------------------------------------------------- /examples/v2/htcondor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/htcondor/README.md -------------------------------------------------------------------------------- /examples/v2/htcondor/applications/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/htcondor/applications/Makefile -------------------------------------------------------------------------------- /examples/v2/htcondor/applications/primes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/htcondor/applications/primes.c -------------------------------------------------------------------------------- /examples/v2/htcondor/applications/submitprimes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/htcondor/applications/submitprimes -------------------------------------------------------------------------------- /examples/v2/htcondor/autoscaler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/htcondor/autoscaler/README.md -------------------------------------------------------------------------------- /examples/v2/htcondor/autoscaler/autoscaler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/htcondor/autoscaler/autoscaler.py -------------------------------------------------------------------------------- /examples/v2/htcondor/condor-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/htcondor/condor-cluster.yaml -------------------------------------------------------------------------------- /examples/v2/htcondor/condor-simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/htcondor/condor-simple.yaml -------------------------------------------------------------------------------- /examples/v2/htcondor/condor.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/htcondor/condor.jinja -------------------------------------------------------------------------------- /examples/v2/htcondor/condor.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/htcondor/condor.jinja.schema -------------------------------------------------------------------------------- /examples/v2/htcondor/startup-compute-centos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/htcondor/startup-compute-centos.sh -------------------------------------------------------------------------------- /examples/v2/htcondor/startup-compute-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/htcondor/startup-compute-debian.sh -------------------------------------------------------------------------------- /examples/v2/htcondor/startup-master-centos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/htcondor/startup-master-centos.sh -------------------------------------------------------------------------------- /examples/v2/htcondor/startup-master-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/htcondor/startup-master-debian.sh -------------------------------------------------------------------------------- /examples/v2/htcondor/startup-submit-centos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/htcondor/startup-submit-centos.sh -------------------------------------------------------------------------------- /examples/v2/htcondor/startup-submit-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/htcondor/startup-submit-debian.sh -------------------------------------------------------------------------------- /examples/v2/iam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/iam/README.md -------------------------------------------------------------------------------- /examples/v2/iam/jinja/accessible_resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/iam/jinja/accessible_resource.yaml -------------------------------------------------------------------------------- /examples/v2/iam/jinja/pubsub_topic.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/iam/jinja/pubsub_topic.jinja -------------------------------------------------------------------------------- /examples/v2/iam/jinja/service_account.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/iam/jinja/service_account.jinja -------------------------------------------------------------------------------- /examples/v2/iam/jinja/vm.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/iam/jinja/vm.jinja -------------------------------------------------------------------------------- /examples/v2/iam_custom_role/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/iam_custom_role/README.md -------------------------------------------------------------------------------- /examples/v2/iam_custom_role/jinja/organization_custom_role.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/iam_custom_role/jinja/organization_custom_role.jinja -------------------------------------------------------------------------------- /examples/v2/iam_custom_role/jinja/organization_custom_role.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/iam_custom_role/jinja/organization_custom_role.jinja.schema -------------------------------------------------------------------------------- /examples/v2/iam_custom_role/jinja/organization_custom_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/iam_custom_role/jinja/organization_custom_role.yaml -------------------------------------------------------------------------------- /examples/v2/iam_custom_role/jinja/project_custom_role.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/iam_custom_role/jinja/project_custom_role.jinja -------------------------------------------------------------------------------- /examples/v2/iam_custom_role/jinja/project_custom_role.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/iam_custom_role/jinja/project_custom_role.jinja.schema -------------------------------------------------------------------------------- /examples/v2/iam_custom_role/jinja/project_custom_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/iam_custom_role/jinja/project_custom_role.yaml -------------------------------------------------------------------------------- /examples/v2/igm-updater/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/igm-updater/README.md -------------------------------------------------------------------------------- /examples/v2/igm-updater/jinja/frontendver1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/igm-updater/jinja/frontendver1.yaml -------------------------------------------------------------------------------- /examples/v2/igm-updater/jinja/frontendver2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/igm-updater/jinja/frontendver2.yaml -------------------------------------------------------------------------------- /examples/v2/igm-updater/jinja/frontendver3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/igm-updater/jinja/frontendver3.yaml -------------------------------------------------------------------------------- /examples/v2/igm-updater/jinja/ha-service.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/igm-updater/jinja/ha-service.jinja -------------------------------------------------------------------------------- /examples/v2/igm-updater/jinja/ha-service.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/igm-updater/jinja/ha-service.jinja.schema -------------------------------------------------------------------------------- /examples/v2/igm-updater/jinja/instance-template.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/igm-updater/jinja/instance-template.jinja -------------------------------------------------------------------------------- /examples/v2/igm-updater/jinja/lb-l3.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/igm-updater/jinja/lb-l3.jinja -------------------------------------------------------------------------------- /examples/v2/igm-updater/jinja/service.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/igm-updater/jinja/service.jinja -------------------------------------------------------------------------------- /examples/v2/igm-updater/python/frontendver1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/igm-updater/python/frontendver1.yaml -------------------------------------------------------------------------------- /examples/v2/igm-updater/python/frontendver2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/igm-updater/python/frontendver2.yaml -------------------------------------------------------------------------------- /examples/v2/igm-updater/python/frontendver3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/igm-updater/python/frontendver3.yaml -------------------------------------------------------------------------------- /examples/v2/igm-updater/python/ha-service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/igm-updater/python/ha-service.py -------------------------------------------------------------------------------- /examples/v2/igm-updater/python/ha-service.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/igm-updater/python/ha-service.py.schema -------------------------------------------------------------------------------- /examples/v2/igm-updater/python/instance-template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/igm-updater/python/instance-template.py -------------------------------------------------------------------------------- /examples/v2/igm-updater/python/lb-l3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/igm-updater/python/lb-l3.py -------------------------------------------------------------------------------- /examples/v2/igm-updater/python/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/igm-updater/python/service.py -------------------------------------------------------------------------------- /examples/v2/image_based_igm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/image_based_igm/README.md -------------------------------------------------------------------------------- /examples/v2/image_based_igm/image_based_igm.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/image_based_igm/image_based_igm.jinja -------------------------------------------------------------------------------- /examples/v2/image_based_igm/image_based_igm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/image_based_igm/image_based_igm.py -------------------------------------------------------------------------------- /examples/v2/instance_pool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/instance_pool/README.md -------------------------------------------------------------------------------- /examples/v2/instance_pool/jinja/instance-pool.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/instance_pool/jinja/instance-pool.jinja -------------------------------------------------------------------------------- /examples/v2/instance_pool/jinja/instance-pool.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/instance_pool/jinja/instance-pool.jinja.schema -------------------------------------------------------------------------------- /examples/v2/instance_pool/jinja/instance-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/instance_pool/jinja/instance-pool.yaml -------------------------------------------------------------------------------- /examples/v2/instance_pool/python/instance-pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/instance_pool/python/instance-pool.py -------------------------------------------------------------------------------- /examples/v2/instance_pool/python/instance-pool.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/instance_pool/python/instance-pool.py.schema -------------------------------------------------------------------------------- /examples/v2/instance_pool/python/instance-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/instance_pool/python/instance-pool.yaml -------------------------------------------------------------------------------- /examples/v2/internal_lb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/internal_lb/README.md -------------------------------------------------------------------------------- /examples/v2/internal_lb/python/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/internal_lb/python/config.yaml -------------------------------------------------------------------------------- /examples/v2/internal_lb/python/internal_lb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/internal_lb/python/internal_lb.py -------------------------------------------------------------------------------- /examples/v2/internal_lb/python/internal_lb.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/internal_lb/python/internal_lb.py.schema -------------------------------------------------------------------------------- /examples/v2/internal_lb/python/internal_lb_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/internal_lb/python/internal_lb_example.py -------------------------------------------------------------------------------- /examples/v2/internal_lb/python/internal_lb_example.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/internal_lb/python/internal_lb_example.py.schema -------------------------------------------------------------------------------- /examples/v2/internal_lb/python/standalone_test_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/internal_lb/python/standalone_test_instance.py -------------------------------------------------------------------------------- /examples/v2/internal_lb/python/standalone_test_instance.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/internal_lb/python/standalone_test_instance.py.schema -------------------------------------------------------------------------------- /examples/v2/internal_lb/python/test_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/internal_lb/python/test_service.py -------------------------------------------------------------------------------- /examples/v2/internal_lb/python/test_service.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/internal_lb/python/test_service.py.schema -------------------------------------------------------------------------------- /examples/v2/internal_lb_haproxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/internal_lb_haproxy/README.md -------------------------------------------------------------------------------- /examples/v2/internal_lb_haproxy/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/internal_lb_haproxy/config.yaml -------------------------------------------------------------------------------- /examples/v2/internal_lb_haproxy/haproxy-startup-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/internal_lb_haproxy/haproxy-startup-script.sh -------------------------------------------------------------------------------- /examples/v2/internal_lb_haproxy/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/internal_lb_haproxy/instance.py -------------------------------------------------------------------------------- /examples/v2/internal_lb_haproxy/instance.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/internal_lb_haproxy/instance.py.schema -------------------------------------------------------------------------------- /examples/v2/internal_lb_haproxy/internal-lb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/internal_lb_haproxy/internal-lb.py -------------------------------------------------------------------------------- /examples/v2/internal_lb_haproxy/internal-lb.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/internal_lb_haproxy/internal-lb.py.schema -------------------------------------------------------------------------------- /examples/v2/internal_lb_haproxy/jinja/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/internal_lb_haproxy/jinja/config.yaml -------------------------------------------------------------------------------- /examples/v2/internal_lb_haproxy/jinja/instance.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/internal_lb_haproxy/jinja/instance.jinja -------------------------------------------------------------------------------- /examples/v2/internal_lb_haproxy/jinja/instance.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/internal_lb_haproxy/jinja/instance.jinja.schema -------------------------------------------------------------------------------- /examples/v2/internal_lb_haproxy/jinja/internal-lb.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/internal_lb_haproxy/jinja/internal-lb.jinja -------------------------------------------------------------------------------- /examples/v2/internal_lb_haproxy/jinja/internal-lb.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/internal_lb_haproxy/jinja/internal-lb.jinja.schema -------------------------------------------------------------------------------- /examples/v2/internal_lb_haproxy/python/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/internal_lb_haproxy/python/config.yaml -------------------------------------------------------------------------------- /examples/v2/internal_lb_haproxy/python/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/internal_lb_haproxy/python/instance.py -------------------------------------------------------------------------------- /examples/v2/internal_lb_haproxy/python/instance.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/internal_lb_haproxy/python/instance.py.schema -------------------------------------------------------------------------------- /examples/v2/internal_lb_haproxy/python/internal-lb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/internal_lb_haproxy/python/internal-lb.py -------------------------------------------------------------------------------- /examples/v2/internal_lb_haproxy/python/internal-lb.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/internal_lb_haproxy/python/internal-lb.py.schema -------------------------------------------------------------------------------- /examples/v2/metadata_from_file/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/metadata_from_file/README.md -------------------------------------------------------------------------------- /examples/v2/metadata_from_file/jinja/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/metadata_from_file/jinja/config.yaml -------------------------------------------------------------------------------- /examples/v2/metadata_from_file/jinja/instance.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/metadata_from_file/jinja/instance.jinja -------------------------------------------------------------------------------- /examples/v2/metadata_from_file/jinja/instance.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/metadata_from_file/jinja/instance.jinja.schema -------------------------------------------------------------------------------- /examples/v2/metadata_from_file/python/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/metadata_from_file/python/config.yaml -------------------------------------------------------------------------------- /examples/v2/metadata_from_file/python/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/metadata_from_file/python/instance.py -------------------------------------------------------------------------------- /examples/v2/metadata_from_file/python/instance.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/metadata_from_file/python/instance.py.schema -------------------------------------------------------------------------------- /examples/v2/metadata_from_file/startup-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/metadata_from_file/startup-script.sh -------------------------------------------------------------------------------- /examples/v2/nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs/README.md -------------------------------------------------------------------------------- /examples/v2/nodejs/dockerfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs/dockerfiles/README.md -------------------------------------------------------------------------------- /examples/v2/nodejs/dockerfiles/mysql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs/dockerfiles/mysql/Dockerfile -------------------------------------------------------------------------------- /examples/v2/nodejs/dockerfiles/mysql/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs/dockerfiles/mysql/startup.sh -------------------------------------------------------------------------------- /examples/v2/nodejs/dockerfiles/node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs/dockerfiles/node/Dockerfile -------------------------------------------------------------------------------- /examples/v2/nodejs/dockerfiles/node/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs/dockerfiles/node/service.js -------------------------------------------------------------------------------- /examples/v2/nodejs/jinja/frontend.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs/jinja/frontend.jinja -------------------------------------------------------------------------------- /examples/v2/nodejs/jinja/frontend.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs/jinja/frontend.jinja.schema -------------------------------------------------------------------------------- /examples/v2/nodejs/jinja/nodejs.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs/jinja/nodejs.jinja -------------------------------------------------------------------------------- /examples/v2/nodejs/jinja/nodejs.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs/jinja/nodejs.jinja.schema -------------------------------------------------------------------------------- /examples/v2/nodejs/jinja/nodejs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs/jinja/nodejs.yaml -------------------------------------------------------------------------------- /examples/v2/nodejs/python/frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs/python/frontend.py -------------------------------------------------------------------------------- /examples/v2/nodejs/python/frontend.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs/python/frontend.py.schema -------------------------------------------------------------------------------- /examples/v2/nodejs/python/nodejs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs/python/nodejs.py -------------------------------------------------------------------------------- /examples/v2/nodejs/python/nodejs.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs/python/nodejs.py.schema -------------------------------------------------------------------------------- /examples/v2/nodejs/python/nodejs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs/python/nodejs.yaml -------------------------------------------------------------------------------- /examples/v2/nodejs_l7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs_l7/README.md -------------------------------------------------------------------------------- /examples/v2/nodejs_l7/dockerfiles/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs_l7/dockerfiles/Dockerfile -------------------------------------------------------------------------------- /examples/v2/nodejs_l7/dockerfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs_l7/dockerfiles/README.md -------------------------------------------------------------------------------- /examples/v2/nodejs_l7/dockerfiles/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs_l7/dockerfiles/service.js -------------------------------------------------------------------------------- /examples/v2/nodejs_l7/jinja/application.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs_l7/jinja/application.jinja -------------------------------------------------------------------------------- /examples/v2/nodejs_l7/jinja/application.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs_l7/jinja/application.jinja.schema -------------------------------------------------------------------------------- /examples/v2/nodejs_l7/jinja/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs_l7/jinja/application.yaml -------------------------------------------------------------------------------- /examples/v2/nodejs_l7/jinja/autoscaled_group.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs_l7/jinja/autoscaled_group.jinja -------------------------------------------------------------------------------- /examples/v2/nodejs_l7/jinja/autoscaled_group.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs_l7/jinja/autoscaled_group.jinja.schema -------------------------------------------------------------------------------- /examples/v2/nodejs_l7/jinja/service.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs_l7/jinja/service.jinja -------------------------------------------------------------------------------- /examples/v2/nodejs_l7/jinja/service.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs_l7/jinja/service.jinja.schema -------------------------------------------------------------------------------- /examples/v2/nodejs_l7/python/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs_l7/python/application.py -------------------------------------------------------------------------------- /examples/v2/nodejs_l7/python/application.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs_l7/python/application.py.schema -------------------------------------------------------------------------------- /examples/v2/nodejs_l7/python/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs_l7/python/application.yaml -------------------------------------------------------------------------------- /examples/v2/nodejs_l7/python/autoscaled_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs_l7/python/autoscaled_group.py -------------------------------------------------------------------------------- /examples/v2/nodejs_l7/python/autoscaled_group.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs_l7/python/autoscaled_group.py.schema -------------------------------------------------------------------------------- /examples/v2/nodejs_l7/python/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs_l7/python/service.py -------------------------------------------------------------------------------- /examples/v2/nodejs_l7/python/service.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/nodejs_l7/python/service.py.schema -------------------------------------------------------------------------------- /examples/v2/quick_start/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/quick_start/README.md -------------------------------------------------------------------------------- /examples/v2/quick_start/vm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/quick_start/vm.yaml -------------------------------------------------------------------------------- /examples/v2/regional_igm/regional_igm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/regional_igm/regional_igm.py -------------------------------------------------------------------------------- /examples/v2/regional_igm/regional_igm.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/regional_igm/regional_igm.py.schema -------------------------------------------------------------------------------- /examples/v2/regional_igm/regional_igm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/regional_igm/regional_igm.yaml -------------------------------------------------------------------------------- /examples/v2/saltstack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/saltstack/README.md -------------------------------------------------------------------------------- /examples/v2/saltstack/jinja/master.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/saltstack/jinja/master.jinja -------------------------------------------------------------------------------- /examples/v2/saltstack/jinja/master.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/saltstack/jinja/master.jinja.schema -------------------------------------------------------------------------------- /examples/v2/saltstack/jinja/minion.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/saltstack/jinja/minion.jinja -------------------------------------------------------------------------------- /examples/v2/saltstack/jinja/minion.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/saltstack/jinja/minion.jinja.schema -------------------------------------------------------------------------------- /examples/v2/saltstack/jinja/salt_cluster.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/saltstack/jinja/salt_cluster.jinja -------------------------------------------------------------------------------- /examples/v2/saltstack/jinja/salt_cluster.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/saltstack/jinja/salt_cluster.jinja.schema -------------------------------------------------------------------------------- /examples/v2/saltstack/jinja/salt_cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/saltstack/jinja/salt_cluster.yaml -------------------------------------------------------------------------------- /examples/v2/saltstack/master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/saltstack/master.py -------------------------------------------------------------------------------- /examples/v2/saltstack/minion.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/saltstack/minion.jinja -------------------------------------------------------------------------------- /examples/v2/saltstack/python/master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/saltstack/python/master.py -------------------------------------------------------------------------------- /examples/v2/saltstack/python/master.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/saltstack/python/master.py.schema -------------------------------------------------------------------------------- /examples/v2/saltstack/python/minion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/saltstack/python/minion.py -------------------------------------------------------------------------------- /examples/v2/saltstack/python/minion.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/saltstack/python/minion.py.schema -------------------------------------------------------------------------------- /examples/v2/saltstack/python/salt_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/saltstack/python/salt_cluster.py -------------------------------------------------------------------------------- /examples/v2/saltstack/python/salt_cluster.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/saltstack/python/salt_cluster.py.schema -------------------------------------------------------------------------------- /examples/v2/saltstack/python/salt_cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/saltstack/python/salt_cluster.yaml -------------------------------------------------------------------------------- /examples/v2/saltstack/salt_cluster.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/saltstack/salt_cluster.jinja -------------------------------------------------------------------------------- /examples/v2/saltstack/salt_cluster.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/saltstack/salt_cluster.jinja.schema -------------------------------------------------------------------------------- /examples/v2/saltstack/salt_cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/saltstack/salt_cluster.yaml -------------------------------------------------------------------------------- /examples/v2/saltstack/states/index.html: -------------------------------------------------------------------------------- 1 | Hello world! 2 | -------------------------------------------------------------------------------- /examples/v2/saltstack/states/top.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/saltstack/states/top.sls -------------------------------------------------------------------------------- /examples/v2/saltstack/states/webserver.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/saltstack/states/webserver.sls -------------------------------------------------------------------------------- /examples/v2/single_vm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/single_vm/README.md -------------------------------------------------------------------------------- /examples/v2/single_vm/jinja/vm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/single_vm/jinja/vm.yaml -------------------------------------------------------------------------------- /examples/v2/single_vm/jinja/vm_template.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/single_vm/jinja/vm_template.jinja -------------------------------------------------------------------------------- /examples/v2/single_vm/jinja/vm_template.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/single_vm/jinja/vm_template.jinja.schema -------------------------------------------------------------------------------- /examples/v2/single_vm/python/vm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/single_vm/python/vm.yaml -------------------------------------------------------------------------------- /examples/v2/single_vm/python/vm_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/single_vm/python/vm_template.py -------------------------------------------------------------------------------- /examples/v2/single_vm/python/vm_template.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/single_vm/python/vm_template.py.schema -------------------------------------------------------------------------------- /examples/v2/sqladmin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/sqladmin/README.md -------------------------------------------------------------------------------- /examples/v2/sqladmin/jinja/sqladmin.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/sqladmin/jinja/sqladmin.jinja -------------------------------------------------------------------------------- /examples/v2/sqladmin/jinja/sqladmin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/sqladmin/jinja/sqladmin.yaml -------------------------------------------------------------------------------- /examples/v2/sqladmin/python/sqladmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/sqladmin/python/sqladmin.py -------------------------------------------------------------------------------- /examples/v2/sqladmin/python/sqladmin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/sqladmin/python/sqladmin.yaml -------------------------------------------------------------------------------- /examples/v2/ssl/crt.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ssl/crt.pem -------------------------------------------------------------------------------- /examples/v2/ssl/csr.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ssl/csr.pem -------------------------------------------------------------------------------- /examples/v2/ssl/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ssl/key.pem -------------------------------------------------------------------------------- /examples/v2/ssl/ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ssl/ssl.py -------------------------------------------------------------------------------- /examples/v2/ssl/ssl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/ssl/ssl.yaml -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/create_a_helper_script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/create_a_helper_script/README.md -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/create_a_helper_script/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/create_a_helper_script/common.py -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/create_a_helper_script/two-vms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/create_a_helper_script/two-vms.yaml -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/create_a_helper_script/vm-template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/create_a_helper_script/vm-template.py -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/step2_create_a_configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/step2_create_a_configuration/README.md -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/step2_create_a_configuration/two-vms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/step2_create_a_configuration/two-vms.yaml -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/step4_use_references/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/step4_use_references/README.md -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/step4_use_references/two-vms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/step4_use_references/two-vms.yaml -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/step5_create_a_template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/step5_create_a_template/README.md -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/step5_create_a_template/jinja/two-vms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/step5_create_a_template/jinja/two-vms.yaml -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/step5_create_a_template/jinja/vm-template-2.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/step5_create_a_template/jinja/vm-template-2.jinja -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/step5_create_a_template/jinja/vm-template.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/step5_create_a_template/jinja/vm-template.jinja -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/step5_create_a_template/python/two-vms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/step5_create_a_template/python/two-vms.yaml -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/step5_create_a_template/python/vm-template-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/step5_create_a_template/python/vm-template-2.py -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/step5_create_a_template/python/vm-template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/step5_create_a_template/python/vm-template.py -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/step6_use_multiple_templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/step6_use_multiple_templates/README.md -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/step6_use_multiple_templates/jinja/vm-template-2.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/step6_use_multiple_templates/jinja/vm-template-2.jinja -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/step6_use_multiple_templates/jinja/vm-template.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/step6_use_multiple_templates/jinja/vm-template.jinja -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/step6_use_multiple_templates/python/network-template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/step6_use_multiple_templates/python/network-template.py -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/step6_use_multiple_templates/python/vm-template-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/step6_use_multiple_templates/python/vm-template-2.py -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/step6_use_multiple_templates/python/vm-template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/step6_use_multiple_templates/python/vm-template.py -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/step7_use_environment_variables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/step7_use_environment_variables/README.md -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/step7_use_environment_variables/jinja/vm-template.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/step7_use_environment_variables/jinja/vm-template.jinja -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/step7_use_environment_variables/python/vm-template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/step7_use_environment_variables/python/vm-template.py -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/step8_metadata_and_startup_scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/step8_metadata_and_startup_scripts/README.md -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/step9_update_a_deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/step9_update_a_deployment/README.md -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/step9_update_a_deployment/jinja/vm-template.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/step9_update_a_deployment/jinja/vm-template.jinja -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/step9_update_a_deployment/python/network-template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/step9_update_a_deployment/python/network-template.py -------------------------------------------------------------------------------- /examples/v2/step_by_step_guide/step9_update_a_deployment/python/vm-template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/step_by_step_guide/step9_update_a_deployment/python/vm-template.py -------------------------------------------------------------------------------- /examples/v2/template_modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/template_modules/README.md -------------------------------------------------------------------------------- /examples/v2/template_modules/jinja/helpers/common.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/template_modules/jinja/helpers/common.jinja -------------------------------------------------------------------------------- /examples/v2/template_modules/jinja/use-jinja-template-with-modules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/template_modules/jinja/use-jinja-template-with-modules.yaml -------------------------------------------------------------------------------- /examples/v2/template_modules/jinja/vm-instance-example.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/template_modules/jinja/vm-instance-example.jinja -------------------------------------------------------------------------------- /examples/v2/template_modules/python/helpers/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/template_modules/python/helpers/common.py -------------------------------------------------------------------------------- /examples/v2/template_modules/python/use-python-template-with-modules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/template_modules/python/use-python-template-with-modules.yaml -------------------------------------------------------------------------------- /examples/v2/template_modules/python/vm-instance-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/template_modules/python/vm-instance-example.py -------------------------------------------------------------------------------- /examples/v2/vm_startup_script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/vm_startup_script/README.md -------------------------------------------------------------------------------- /examples/v2/vm_startup_script/jinja/vm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/vm_startup_script/jinja/vm.yaml -------------------------------------------------------------------------------- /examples/v2/vm_startup_script/jinja/vm_template.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/vm_startup_script/jinja/vm_template.jinja -------------------------------------------------------------------------------- /examples/v2/vm_startup_script/jinja/vm_template.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/vm_startup_script/jinja/vm_template.jinja.schema -------------------------------------------------------------------------------- /examples/v2/vm_startup_script/python/vm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/vm_startup_script/python/vm.yaml -------------------------------------------------------------------------------- /examples/v2/vm_startup_script/python/vm_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/vm_startup_script/python/vm_template.py -------------------------------------------------------------------------------- /examples/v2/vm_startup_script/python/vm_template.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/vm_startup_script/python/vm_template.py.schema -------------------------------------------------------------------------------- /examples/v2/vm_with_disks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/vm_with_disks/README.md -------------------------------------------------------------------------------- /examples/v2/vm_with_disks/jinja/vm_with_disks.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/vm_with_disks/jinja/vm_with_disks.jinja -------------------------------------------------------------------------------- /examples/v2/vm_with_disks/jinja/vm_with_disks.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/vm_with_disks/jinja/vm_with_disks.jinja.schema -------------------------------------------------------------------------------- /examples/v2/vm_with_disks/jinja/vm_with_disks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/vm_with_disks/jinja/vm_with_disks.yaml -------------------------------------------------------------------------------- /examples/v2/vm_with_disks/python/vm_with_disks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/vm_with_disks/python/vm_with_disks.py -------------------------------------------------------------------------------- /examples/v2/vm_with_disks/python/vm_with_disks.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/vm_with_disks/python/vm_with_disks.py.schema -------------------------------------------------------------------------------- /examples/v2/vm_with_disks/python/vm_with_disks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/vm_with_disks/python/vm_with_disks.yaml -------------------------------------------------------------------------------- /examples/v2/vpn_auto_subnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/vpn_auto_subnet/README.md -------------------------------------------------------------------------------- /examples/v2/vpn_auto_subnet/vpn-auto-subnet.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/vpn_auto_subnet/vpn-auto-subnet.jinja -------------------------------------------------------------------------------- /examples/v2/vpn_auto_subnet/vpn-auto-subnet.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/vpn_auto_subnet/vpn-auto-subnet.jinja.schema -------------------------------------------------------------------------------- /examples/v2/waiter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/waiter/README.md -------------------------------------------------------------------------------- /examples/v2/waiter/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/waiter/config.yaml -------------------------------------------------------------------------------- /examples/v2/waiter/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/waiter/instance.py -------------------------------------------------------------------------------- /examples/v2/waiter/instance.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/waiter/instance.py.schema -------------------------------------------------------------------------------- /examples/v2/waiter/waiter.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/waiter/waiter.jinja -------------------------------------------------------------------------------- /examples/v2/waiter/waiter.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/examples/v2/waiter/waiter.jinja.schema -------------------------------------------------------------------------------- /google/resource-snippets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/README.md -------------------------------------------------------------------------------- /google/resource-snippets/accesscontextmanager-v1/ios_access_level.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/accesscontextmanager-v1/ios_access_level.jinja -------------------------------------------------------------------------------- /google/resource-snippets/accesscontextmanager-v1/ios_access_level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/accesscontextmanager-v1/ios_access_level.yaml -------------------------------------------------------------------------------- /google/resource-snippets/accesscontextmanager-v1/ip_and_os_access_level.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/accesscontextmanager-v1/ip_and_os_access_level.jinja -------------------------------------------------------------------------------- /google/resource-snippets/accesscontextmanager-v1/ip_and_os_access_level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/accesscontextmanager-v1/ip_and_os_access_level.yaml -------------------------------------------------------------------------------- /google/resource-snippets/accesscontextmanager-v1/mac_os_access_level.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/accesscontextmanager-v1/mac_os_access_level.jinja -------------------------------------------------------------------------------- /google/resource-snippets/accesscontextmanager-v1/mac_os_access_level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/accesscontextmanager-v1/mac_os_access_level.yaml -------------------------------------------------------------------------------- /google/resource-snippets/accesscontextmanager-v1beta1/ios_access_level.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/accesscontextmanager-v1beta1/ios_access_level.jinja -------------------------------------------------------------------------------- /google/resource-snippets/accesscontextmanager-v1beta1/ios_access_level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/accesscontextmanager-v1beta1/ios_access_level.yaml -------------------------------------------------------------------------------- /google/resource-snippets/accesscontextmanager-v1beta1/ip_and_os_access_level.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/accesscontextmanager-v1beta1/ip_and_os_access_level.jinja -------------------------------------------------------------------------------- /google/resource-snippets/accesscontextmanager-v1beta1/ip_and_os_access_level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/accesscontextmanager-v1beta1/ip_and_os_access_level.yaml -------------------------------------------------------------------------------- /google/resource-snippets/accesscontextmanager-v1beta1/mac_os_access_level.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/accesscontextmanager-v1beta1/mac_os_access_level.jinja -------------------------------------------------------------------------------- /google/resource-snippets/accesscontextmanager-v1beta1/mac_os_access_level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/accesscontextmanager-v1beta1/mac_os_access_level.yaml -------------------------------------------------------------------------------- /google/resource-snippets/appengine-v1/version.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/appengine-v1/version.jinja -------------------------------------------------------------------------------- /google/resource-snippets/appengine-v1/version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/appengine-v1/version.yaml -------------------------------------------------------------------------------- /google/resource-snippets/bigquery-v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/bigquery-v2/README.md -------------------------------------------------------------------------------- /google/resource-snippets/bigquery-v2/alternatives/krm/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/bigquery-v2/alternatives/krm/Kptfile -------------------------------------------------------------------------------- /google/resource-snippets/bigquery-v2/alternatives/krm/bigquery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/bigquery-v2/alternatives/krm/bigquery.yaml -------------------------------------------------------------------------------- /google/resource-snippets/bigquery-v2/alternatives/tf/bigquery.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/bigquery-v2/alternatives/tf/bigquery.tf -------------------------------------------------------------------------------- /google/resource-snippets/bigquery-v2/bigquery.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/bigquery-v2/bigquery.jinja -------------------------------------------------------------------------------- /google/resource-snippets/bigquery-v2/bigquery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/bigquery-v2/bigquery.yaml -------------------------------------------------------------------------------- /google/resource-snippets/bigquery-v2/test_alternatives.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/bigquery-v2/test_alternatives.sh -------------------------------------------------------------------------------- /google/resource-snippets/bigtableadmin-v2/bigtable.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/bigtableadmin-v2/bigtable.jinja -------------------------------------------------------------------------------- /google/resource-snippets/bigtableadmin-v2/bigtable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/bigtableadmin-v2/bigtable.yaml -------------------------------------------------------------------------------- /google/resource-snippets/cloudfunctions-v1/configurable_functions.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/cloudfunctions-v1/configurable_functions.jinja -------------------------------------------------------------------------------- /google/resource-snippets/cloudfunctions-v1/configurable_functions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/cloudfunctions-v1/configurable_functions.yaml -------------------------------------------------------------------------------- /google/resource-snippets/cloudfunctions-v1/empty_bucket_in_function.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/cloudfunctions-v1/empty_bucket_in_function.jinja -------------------------------------------------------------------------------- /google/resource-snippets/cloudfunctions-v1/empty_bucket_in_function.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/cloudfunctions-v1/empty_bucket_in_function.yaml -------------------------------------------------------------------------------- /google/resource-snippets/cloudfunctions-v2beta/configurable_functions.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/cloudfunctions-v2beta/configurable_functions.jinja -------------------------------------------------------------------------------- /google/resource-snippets/cloudfunctions-v2beta/configurable_functions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/cloudfunctions-v2beta/configurable_functions.yaml -------------------------------------------------------------------------------- /google/resource-snippets/cloudfunctions-v2beta/empty_bucket_in_function.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/cloudfunctions-v2beta/empty_bucket_in_function.jinja -------------------------------------------------------------------------------- /google/resource-snippets/cloudfunctions-v2beta/empty_bucket_in_function.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/cloudfunctions-v2beta/empty_bucket_in_function.yaml -------------------------------------------------------------------------------- /google/resource-snippets/cloudfunctions-v2beta/function_iam.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/cloudfunctions-v2beta/function_iam.jinja -------------------------------------------------------------------------------- /google/resource-snippets/cloudfunctions-v2beta/function_iam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/cloudfunctions-v2beta/function_iam.yaml -------------------------------------------------------------------------------- /google/resource-snippets/cloudkms-v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/cloudkms-v1/README.md -------------------------------------------------------------------------------- /google/resource-snippets/cloudkms-v1/alternatives/krm/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/cloudkms-v1/alternatives/krm/Kptfile -------------------------------------------------------------------------------- /google/resource-snippets/cloudkms-v1/alternatives/krm/cloudkms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/cloudkms-v1/alternatives/krm/cloudkms.yaml -------------------------------------------------------------------------------- /google/resource-snippets/cloudkms-v1/alternatives/tf/cloudkms.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/cloudkms-v1/alternatives/tf/cloudkms.tf -------------------------------------------------------------------------------- /google/resource-snippets/cloudkms-v1/kms.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/cloudkms-v1/kms.jinja -------------------------------------------------------------------------------- /google/resource-snippets/cloudkms-v1/kms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/cloudkms-v1/kms.yaml -------------------------------------------------------------------------------- /google/resource-snippets/cloudkms-v1/test_alternatives.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/cloudkms-v1/test_alternatives.sh -------------------------------------------------------------------------------- /google/resource-snippets/cloudresourcemanager-v1/policies.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/cloudresourcemanager-v1/policies.jinja -------------------------------------------------------------------------------- /google/resource-snippets/cloudresourcemanager-v1/project.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/cloudresourcemanager-v1/project.jinja -------------------------------------------------------------------------------- /google/resource-snippets/cloudresourcemanager-v1/project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/cloudresourcemanager-v1/project.yaml -------------------------------------------------------------------------------- /google/resource-snippets/cloudresourcemanager-v1/project_lien.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/cloudresourcemanager-v1/project_lien.yaml -------------------------------------------------------------------------------- /google/resource-snippets/cloudresourcemanager-v1/virtualFolderMember.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/cloudresourcemanager-v1/virtualFolderMember.yaml -------------------------------------------------------------------------------- /google/resource-snippets/cloudresourcemanager-v1/virtualOrganizationMember.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/cloudresourcemanager-v1/virtualOrganizationMember.yaml -------------------------------------------------------------------------------- /google/resource-snippets/cloudresourcemanager-v1/virtualProjectMember.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/cloudresourcemanager-v1/virtualProjectMember.yaml -------------------------------------------------------------------------------- /google/resource-snippets/cloudresourcemanager-v2/folders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/cloudresourcemanager-v2/folders/README.md -------------------------------------------------------------------------------- /google/resource-snippets/cloudresourcemanager-v2/folders/folder.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/cloudresourcemanager-v2/folders/folder.jinja -------------------------------------------------------------------------------- /google/resource-snippets/cloudresourcemanager-v2/folders/folder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/cloudresourcemanager-v2/folders/folder.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-alpha/instance_group_manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-alpha/instance_group_manager.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-beta/instance_group_manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-beta/instance_group_manager.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-beta/instance_group_manager_with_auto_healing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-beta/instance_group_manager_with_auto_healing.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/address.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/address.jinja -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/address.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/address.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/alternatives-firewall/tf/firewall.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/alternatives-firewall/tf/firewall.tf -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/autoscaler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/autoscaler.py -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/autoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/autoscaler.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/backend_service.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/backend_service.jinja -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/backend_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/backend_service.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/certificate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/certificate.txt -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/cloud_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/cloud_router.py -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/cloud_router.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/cloud_router.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/compute_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/compute_constants.py -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/compute_resource_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/compute_resource_util.py -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/disk.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/disk.jinja -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/disk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/disk.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/external-vpn-gateway.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/external-vpn-gateway.jinja -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/external-vpn-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/external-vpn-gateway.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/firewall.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/firewall.jinja -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/firewall.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/firewall.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/forwarding_rule.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/forwarding_rule.jinja -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/forwarding_rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/forwarding_rule.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/global_address.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/global_address.jinja -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/global_address.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/global_address.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/global_address_with_specific_address.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/global_address_with_specific_address.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/global_forwarding_rule.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/global_forwarding_rule.jinja -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/global_forwarding_rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/global_forwarding_rule.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/health_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/health_check.py -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/health_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/health_check.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/healthz_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/healthz_server.py -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/http_health_check.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/http_health_check.jinja -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/http_health_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/http_health_check.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/image.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/image.jinja -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/image.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/instance.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/instance.jinja -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/instance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/instance.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/instance_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/instance_group.py -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/instance_group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/instance_group.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/instance_group_manager.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/instance_group_manager.jinja -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/instance_group_manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/instance_group_manager.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/instance_group_manager_with_auto_healing.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/instance_group_manager_with_auto_healing.jinja -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/instance_template.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/instance_template.jinja -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/instance_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/instance_template.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/instance_without_labels.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/instance_without_labels.jinja -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/instance_without_labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/instance_without_labels.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/key.txt -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/network.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/network.jinja -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/network.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/network_with_peering.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/network_with_peering.jinja -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/network_with_peering.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/network_with_peering.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/region_backend_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/region_backend_service.py -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/region_backend_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/region_backend_service.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/region_health_check.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/region_health_check.jinja -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/region_health_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/region_health_check.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/route.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/route.jinja -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/route.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/subnetworks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/subnetworks.py -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/subnetworks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/subnetworks.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/target_http_proxy.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/target_http_proxy.jinja -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/target_http_proxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/target_http_proxy.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/target_https_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/target_https_proxy.py -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/target_https_proxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/target_https_proxy.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/target_instance.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/target_instance.jinja -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/target_instance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/target_instance.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/target_pool.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/target_pool.jinja -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/target_pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/target_pool.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/target_ssl_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/target_ssl_proxy.py -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/target_ssl_proxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/target_ssl_proxy.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/target_tcp_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/target_tcp_proxy.py -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/target_tcp_proxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/target_tcp_proxy.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/test_alternatives_firewall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/test_alternatives_firewall.sh -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/url_map.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/url_map.jinja -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/url_map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/url_map.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/vpn-gateway.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/vpn-gateway.jinja -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/vpn-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/vpn-gateway.yaml -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/vpn_tunnel.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/vpn_tunnel.jinja -------------------------------------------------------------------------------- /google/resource-snippets/compute-v1/vpn_tunnel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/compute-v1/vpn_tunnel.yaml -------------------------------------------------------------------------------- /google/resource-snippets/container-v1/gke_provider_cluster.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/container-v1/gke_provider_cluster.jinja -------------------------------------------------------------------------------- /google/resource-snippets/container-v1/gke_provider_cluster.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/container-v1/gke_provider_cluster.jinja.schema -------------------------------------------------------------------------------- /google/resource-snippets/container-v1/gke_provider_cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/container-v1/gke_provider_cluster.yaml -------------------------------------------------------------------------------- /google/resource-snippets/container-v1/replication_controller.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/container-v1/replication_controller.jinja -------------------------------------------------------------------------------- /google/resource-snippets/container-v1/replication_controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/container-v1/replication_controller.yaml -------------------------------------------------------------------------------- /google/resource-snippets/container-v1beta1/gke_provider_cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/container-v1beta1/gke_provider_cluster.yaml -------------------------------------------------------------------------------- /google/resource-snippets/dataproc-v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/dataproc-v1/README.md -------------------------------------------------------------------------------- /google/resource-snippets/dataproc-v1/dataproc.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/dataproc-v1/dataproc.jinja -------------------------------------------------------------------------------- /google/resource-snippets/dataproc-v1/dataproc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/dataproc-v1/dataproc.yaml -------------------------------------------------------------------------------- /google/resource-snippets/dns-v1/all_supported_record_types.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/dns-v1/all_supported_record_types.jinja -------------------------------------------------------------------------------- /google/resource-snippets/dns-v1/all_supported_record_types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/dns-v1/all_supported_record_types.yaml -------------------------------------------------------------------------------- /google/resource-snippets/dns-v1/managed-zone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/dns-v1/managed-zone.yaml -------------------------------------------------------------------------------- /google/resource-snippets/dns-v1/one_a_record.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/dns-v1/one_a_record.jinja -------------------------------------------------------------------------------- /google/resource-snippets/dns-v1/one_a_record.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/dns-v1/one_a_record.yaml -------------------------------------------------------------------------------- /google/resource-snippets/dns-v1beta2/dns_private.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/dns-v1beta2/dns_private.jinja -------------------------------------------------------------------------------- /google/resource-snippets/dns-v1beta2/dns_private.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/dns-v1beta2/dns_private.yaml -------------------------------------------------------------------------------- /google/resource-snippets/file-v1beta1/instance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/file-v1beta1/instance.yaml -------------------------------------------------------------------------------- /google/resource-snippets/functions-backed-type/api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/functions-backed-type/api.json -------------------------------------------------------------------------------- /google/resource-snippets/functions-backed-type/cloud-sql-type-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/functions-backed-type/cloud-sql-type-deployment.yaml -------------------------------------------------------------------------------- /google/resource-snippets/functions-backed-type/function/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/functions-backed-type/function/function.js -------------------------------------------------------------------------------- /google/resource-snippets/functions-backed-type/function/googleApiHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/functions-backed-type/function/googleApiHelper.js -------------------------------------------------------------------------------- /google/resource-snippets/functions-backed-type/function/instanceDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/functions-backed-type/function/instanceDelete.js -------------------------------------------------------------------------------- /google/resource-snippets/functions-backed-type/function/instanceGet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/functions-backed-type/function/instanceGet.js -------------------------------------------------------------------------------- /google/resource-snippets/functions-backed-type/function/instanceInsert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/functions-backed-type/function/instanceInsert.js -------------------------------------------------------------------------------- /google/resource-snippets/functions-backed-type/function/instancePatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/functions-backed-type/function/instancePatch.js -------------------------------------------------------------------------------- /google/resource-snippets/functions-backed-type/function/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/functions-backed-type/function/package.json -------------------------------------------------------------------------------- /google/resource-snippets/functions-backed-type/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/functions-backed-type/readme.md -------------------------------------------------------------------------------- /google/resource-snippets/iam-v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/iam-v1/README.md -------------------------------------------------------------------------------- /google/resource-snippets/iam-v1/configurable_service_accounts.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/iam-v1/configurable_service_accounts.jinja -------------------------------------------------------------------------------- /google/resource-snippets/iam-v1/configurable_service_accounts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/iam-v1/configurable_service_accounts.yaml -------------------------------------------------------------------------------- /google/resource-snippets/iam-v1/header_set_iam_policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/iam-v1/header_set_iam_policy.yaml -------------------------------------------------------------------------------- /google/resource-snippets/iam-v1/iam-v1-header-provider.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/iam-v1/iam-v1-header-provider.yaml -------------------------------------------------------------------------------- /google/resource-snippets/iam-v1/roles.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/iam-v1/roles.jinja -------------------------------------------------------------------------------- /google/resource-snippets/iam-v1/roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/iam-v1/roles.yaml -------------------------------------------------------------------------------- /google/resource-snippets/iam-v1/service_accounts.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/iam-v1/service_accounts.jinja -------------------------------------------------------------------------------- /google/resource-snippets/iam-v1/service_accounts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/iam-v1/service_accounts.yaml -------------------------------------------------------------------------------- /google/resource-snippets/logging-v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/logging-v2/README.md -------------------------------------------------------------------------------- /google/resource-snippets/logging-v2/alternatives/tf/logging.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/logging-v2/alternatives/tf/logging.tf -------------------------------------------------------------------------------- /google/resource-snippets/logging-v2/configurable_logging.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/logging-v2/configurable_logging.jinja -------------------------------------------------------------------------------- /google/resource-snippets/logging-v2/configurable_logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/logging-v2/configurable_logging.yaml -------------------------------------------------------------------------------- /google/resource-snippets/logging-v2/logging.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/logging-v2/logging.jinja -------------------------------------------------------------------------------- /google/resource-snippets/logging-v2/logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/logging-v2/logging.yaml -------------------------------------------------------------------------------- /google/resource-snippets/logging-v2/test_alternatives.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/logging-v2/test_alternatives.sh -------------------------------------------------------------------------------- /google/resource-snippets/monitoring-v3/alert_policies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/monitoring-v3/alert_policies.yaml -------------------------------------------------------------------------------- /google/resource-snippets/monitoring-v3/groups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/monitoring-v3/groups.yaml -------------------------------------------------------------------------------- /google/resource-snippets/monitoring-v3/metric_descriptors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/monitoring-v3/metric_descriptors.yaml -------------------------------------------------------------------------------- /google/resource-snippets/monitoring-v3/notification_channels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/monitoring-v3/notification_channels.yaml -------------------------------------------------------------------------------- /google/resource-snippets/monitoring-v3/uptime_check_configs.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/monitoring-v3/uptime_check_configs.jinja -------------------------------------------------------------------------------- /google/resource-snippets/monitoring-v3/uptime_check_configs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/monitoring-v3/uptime_check_configs.yaml -------------------------------------------------------------------------------- /google/resource-snippets/pubsub-v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/pubsub-v1/README.md -------------------------------------------------------------------------------- /google/resource-snippets/pubsub-v1/alternatives/krm/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/pubsub-v1/alternatives/krm/Kptfile -------------------------------------------------------------------------------- /google/resource-snippets/pubsub-v1/alternatives/krm/pubsub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/pubsub-v1/alternatives/krm/pubsub.yaml -------------------------------------------------------------------------------- /google/resource-snippets/pubsub-v1/alternatives/tf/pubsub.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/pubsub-v1/alternatives/tf/pubsub.tf -------------------------------------------------------------------------------- /google/resource-snippets/pubsub-v1/pubsub.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/pubsub-v1/pubsub.jinja -------------------------------------------------------------------------------- /google/resource-snippets/pubsub-v1/pubsub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/pubsub-v1/pubsub.yaml -------------------------------------------------------------------------------- /google/resource-snippets/pubsub-v1/test_alternatives.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/pubsub-v1/test_alternatives.sh -------------------------------------------------------------------------------- /google/resource-snippets/redis-v1/instance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/redis-v1/instance.yaml -------------------------------------------------------------------------------- /google/resource-snippets/redis-v1/memorystore-instance.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/redis-v1/memorystore-instance.jinja -------------------------------------------------------------------------------- /google/resource-snippets/redis-v1beta1/instance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/redis-v1beta1/instance.yaml -------------------------------------------------------------------------------- /google/resource-snippets/redis-v1beta1/memorystore-instance.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/redis-v1beta1/memorystore-instance.jinja -------------------------------------------------------------------------------- /google/resource-snippets/runtimeconfig-v1beta1/configurable_runtimeconfig.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/runtimeconfig-v1beta1/configurable_runtimeconfig.jinja -------------------------------------------------------------------------------- /google/resource-snippets/runtimeconfig-v1beta1/configurable_runtimeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/runtimeconfig-v1beta1/configurable_runtimeconfig.yaml -------------------------------------------------------------------------------- /google/resource-snippets/runtimeconfig-v1beta1/runtimeconfig.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/runtimeconfig-v1beta1/runtimeconfig.jinja -------------------------------------------------------------------------------- /google/resource-snippets/runtimeconfig-v1beta1/runtimeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/runtimeconfig-v1beta1/runtimeconfig.yaml -------------------------------------------------------------------------------- /google/resource-snippets/serviceusage-v1/enable.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/serviceusage-v1/enable.jinja -------------------------------------------------------------------------------- /google/resource-snippets/serviceusage-v1/enable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/serviceusage-v1/enable.yaml -------------------------------------------------------------------------------- /google/resource-snippets/spanner-v1/spanner.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/spanner-v1/spanner.jinja -------------------------------------------------------------------------------- /google/resource-snippets/spanner-v1/spanner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/spanner-v1/spanner.yaml -------------------------------------------------------------------------------- /google/resource-snippets/sqladmin-v1beta4/cloudsql.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/sqladmin-v1beta4/cloudsql.jinja -------------------------------------------------------------------------------- /google/resource-snippets/sqladmin-v1beta4/cloudsql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/sqladmin-v1beta4/cloudsql.yaml -------------------------------------------------------------------------------- /google/resource-snippets/sqladmin-v1beta4/cloudsql_with_user.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/sqladmin-v1beta4/cloudsql_with_user.jinja -------------------------------------------------------------------------------- /google/resource-snippets/sqladmin-v1beta4/cloudsql_with_user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/sqladmin-v1beta4/cloudsql_with_user.yaml -------------------------------------------------------------------------------- /google/resource-snippets/storage-v1/bucket.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/storage-v1/bucket.jinja -------------------------------------------------------------------------------- /google/resource-snippets/storage-v1/bucket.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/storage-v1/bucket.yaml -------------------------------------------------------------------------------- /google/resource-snippets/storage-v1/bucket_acl.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/storage-v1/bucket_acl.jinja -------------------------------------------------------------------------------- /google/resource-snippets/storage-v1/bucket_acl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/storage-v1/bucket_acl.yaml -------------------------------------------------------------------------------- /google/resource-snippets/storage-v1/multi_notification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/storage-v1/multi_notification.yaml -------------------------------------------------------------------------------- /google/resource-snippets/storage-v1/notification.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/storage-v1/notification.jinja -------------------------------------------------------------------------------- /google/resource-snippets/storage-v1/single_notification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/storage-v1/single_notification.yaml -------------------------------------------------------------------------------- /google/resource-snippets/tpu-v1alpha1/tpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/tpu-v1alpha1/tpu.py -------------------------------------------------------------------------------- /google/resource-snippets/tpu-v1alpha1/tpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/resource-snippets/tpu-v1alpha1/tpu.yaml -------------------------------------------------------------------------------- /google/solutions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/google/solutions/README.md -------------------------------------------------------------------------------- /quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/quickstart.md -------------------------------------------------------------------------------- /templates/autoscaled_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/templates/autoscaled_group.py -------------------------------------------------------------------------------- /templates/autoscaled_group.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/templates/autoscaled_group.py.schema -------------------------------------------------------------------------------- /templates/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/templates/common.py -------------------------------------------------------------------------------- /templates/container_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/templates/container_helper.py -------------------------------------------------------------------------------- /templates/container_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/templates/container_instance.py -------------------------------------------------------------------------------- /templates/container_instance.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/templates/container_instance.py.schema -------------------------------------------------------------------------------- /templates/container_instance_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/templates/container_instance_template.py -------------------------------------------------------------------------------- /templates/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/templates/default.py -------------------------------------------------------------------------------- /templates/http_load_balancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/templates/http_load_balancer.py -------------------------------------------------------------------------------- /templates/http_load_balancer.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/templates/http_load_balancer.py.schema -------------------------------------------------------------------------------- /templates/replicated_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/templates/replicated_service.py -------------------------------------------------------------------------------- /templates/replicated_service.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/templates/replicated_service.py.schema -------------------------------------------------------------------------------- /templates/software_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/templates/software_status.py -------------------------------------------------------------------------------- /templates/software_status.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/templates/software_status.py.schema -------------------------------------------------------------------------------- /templates/software_status.sh.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/templates/software_status.sh.tmpl -------------------------------------------------------------------------------- /templates/software_status_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/templates/software_status_script.py -------------------------------------------------------------------------------- /templates/software_status_script.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/templates/software_status_script.py.schema -------------------------------------------------------------------------------- /templates/vm_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/templates/vm_instance.py -------------------------------------------------------------------------------- /templates/vm_instance.py.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/templates/vm_instance.py.schema -------------------------------------------------------------------------------- /templates/vm_instance_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/templates/vm_instance_template.py -------------------------------------------------------------------------------- /templates/vm_multiple_instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/templates/vm_multiple_instances.py -------------------------------------------------------------------------------- /tools/alt-testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/alt-testing/README.md -------------------------------------------------------------------------------- /tools/alt-testing/create-projects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/alt-testing/create-projects.sh -------------------------------------------------------------------------------- /tools/alt-testing/delete-projects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/alt-testing/delete-projects.sh -------------------------------------------------------------------------------- /tools/genconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/genconfig/README.md -------------------------------------------------------------------------------- /tools/genconfig/example/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/genconfig/example/config.yaml -------------------------------------------------------------------------------- /tools/genconfig/example/generated.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/genconfig/example/generated.jinja -------------------------------------------------------------------------------- /tools/genconfig/example/generated.jinja.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/genconfig/example/generated.jinja.schema -------------------------------------------------------------------------------- /tools/genconfig/example/resources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/genconfig/example/resources.txt -------------------------------------------------------------------------------- /tools/genconfig/genconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/genconfig/genconfig.py -------------------------------------------------------------------------------- /tools/scheduled-deployments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/scheduled-deployments/README.md -------------------------------------------------------------------------------- /tools/scheduled-deployments/functions/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/scheduled-deployments/functions/constants.js -------------------------------------------------------------------------------- /tools/scheduled-deployments/functions/datastore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/scheduled-deployments/functions/datastore.js -------------------------------------------------------------------------------- /tools/scheduled-deployments/functions/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/scheduled-deployments/functions/deploy.js -------------------------------------------------------------------------------- /tools/scheduled-deployments/functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/scheduled-deployments/functions/index.js -------------------------------------------------------------------------------- /tools/scheduled-deployments/functions/logging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/scheduled-deployments/functions/logging.js -------------------------------------------------------------------------------- /tools/scheduled-deployments/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/scheduled-deployments/functions/package.json -------------------------------------------------------------------------------- /tools/scheduled-deployments/functions/schedule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/scheduled-deployments/functions/schedule.js -------------------------------------------------------------------------------- /tools/scheduled-deployments/functions/test/datastore_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/scheduled-deployments/functions/test/datastore_test.js -------------------------------------------------------------------------------- /tools/scheduled-deployments/functions/test/deploy_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/scheduled-deployments/functions/test/deploy_test.js -------------------------------------------------------------------------------- /tools/scheduled-deployments/functions/test/index_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/scheduled-deployments/functions/test/index_test.js -------------------------------------------------------------------------------- /tools/scheduled-deployments/functions/test/schedule_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/scheduled-deployments/functions/test/schedule_test.js -------------------------------------------------------------------------------- /tools/scheduled-deployments/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/scheduled-deployments/openapi.json -------------------------------------------------------------------------------- /tools/scheduled-deployments/parameters_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/scheduled-deployments/parameters_init.sh -------------------------------------------------------------------------------- /tools/scheduled-deployments/sd_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/scheduled-deployments/sd_config.yaml -------------------------------------------------------------------------------- /tools/scheduled-deployments/sd_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/scheduled-deployments/sd_template.py -------------------------------------------------------------------------------- /tools/scheduled-deployments/tests/sample_deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/scheduled-deployments/tests/sample_deployment.json -------------------------------------------------------------------------------- /tools/scheduled-deployments/tests/test_deployment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/scheduled-deployments/tests/test_deployment.sh -------------------------------------------------------------------------------- /tools/scheduled-deployments/tests/test_scheduling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/tools/scheduled-deployments/tests/test_scheduling.sh -------------------------------------------------------------------------------- /walkthroughtutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/deploymentmanager-samples/HEAD/walkthroughtutorial.md --------------------------------------------------------------------------------