{"id":31468,"date":"2021-01-13T11:58:16","date_gmt":"2021-01-13T11:58:16","guid":{"rendered":"https:\/\/www.testpreptraining.com\/tutorial\/?page_id=31468"},"modified":"2021-01-13T11:58:16","modified_gmt":"2021-01-13T11:58:16","slug":"integration-with-external-systems","status":"publish","type":"page","link":"https:\/\/www.testpreptraining.ai\/tutorial\/integration-with-external-systems\/","title":{"rendered":"Integration with external systems"},"content":{"rendered":"\n<p><strong><a href=\"https:\/\/www.testpreptraining.ai\/tutorial\/google-certified-professional-cloud-architect\/\" target=\"_blank\" rel=\"noreferrer noopener\">Go back to GCP Tutorials<\/a><\/strong><\/p>\n\n\n\n<p>In this tutorial we will understand about integration with external systems.<\/p>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Connecting Amazon VPC to your Google Cloud virtual network<\/strong><\/h5>\n\n\n\n<p>To establish the Amazon VPC, follow the instructions in Using Cloud VPN with Amazon Web Services, in the sections &#8220;Policy Based IPsec VPN: Configuration &#8211; AWS&#8221; and &#8220;Policy Based IPsec VPN: Configuration &#8211; GCP UI.&#8221;<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Firstly, use the default VPC with the network address 172.31.0.0\/16 CIDR.<\/li><li>Secondly, use the default subnet with the network address 172.31.0.0\/16 CIDR.<\/li><li>Then, create a VPN connection with AWS using the static IP address aws-vpn as a Compute Engine VPN gateway.<\/li><\/ul>\n\n\n\n<p>However, you use IPsec VPN to connect Amazon VPC to the Google Cloud virtual network that you create in Google Cloud.<\/p>\n\n\n\n<p><strong>gcloud<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Firstly, open Cloud Shell: ACTIVATE Cloud Shell<\/li><li>Secondly, create a Google Cloud virtual network:<ul><li>gcloud compute networks create &#8220;aws-vpn&#8221; &#8211;subnet-mode &#8220;auto&#8221;<\/li><li>gcloud compute addresses create &#8220;aws-vpn&#8221; &#8211;region &#8220;asia-east1&#8221;<\/li><\/ul><\/li><li>Thirdly, follow the instructions in Using Cloud VPN with Amazon Web Services.<\/li><li>Lastly, to show the VPN configuration in the Cloud Console, open the VPN page. <\/li><\/ul>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Configuring the Amazon VPC routing table<\/strong><\/h4>\n\n\n\n<p>To enable the Amazon EC2 instances to access the Google Cloud virtual network in your project, follow these steps:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Firstly, in the AWS Management Console, click the Route Table tab.<\/li><li>Secondly, select Route Propagation and click Edit.<\/li><li>Lastly, select Propagate in your VPC network private IP range, and then click Save.<\/li><\/ul>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Configuring firewall rules<\/strong><\/h4>\n\n\n\n<p>The next step is to add firewall rules that allow the proxy connection from Amazon VPC, and an SSH connection from all external networks. The SSH connection is used only for configuring the HTTP or HTTPS proxy instance. However, to configure the proxy without manually signing in to the instance, you can use a startup script. In this case you don&#8217;t need to create the firewall rule for the SSH connection.<\/p>\n\n\n\n<p><strong>gcloud<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Firstly, in Cloud Shell, add a firewall rule for the proxy:<\/li><\/ul>\n\n\n\n<p><em>gcloud compute firewall-rules create &#8220;aws-vpn-allow-proxy&#8221; \\<br>&#8211;description &#8220;Allow Google private access from AWS VPC&#8221; \\<br>&#8211;network &#8220;aws-vpn&#8221; &#8211;allow tcp:8118 \\<br>&#8211;source-ranges &#8220;172.31.0.0\/16&#8221; &#8211;target-tags &#8220;api-proxy&#8221;<\/em><\/p>\n\n\n\n<p>And, when the firewall rule is created, the following output appears:<\/p>\n\n\n\n<p><em>Creating firewall\u2026done.<br>NAME NETWORK SRC_RANGES RULES SRC_TAGS TARGET_TAGS<br>aws-vpn-allow-proxy aws-vpn 172.31.0.0\/16 tcp:8118 api-proxy<\/em><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Secondly, if you&#8217;re not using a startup script, add a firewall rule for the SSH connection:<\/li><\/ul>\n\n\n\n<p><em>gcloud compute firewall-rules create &#8220;aws-vpn-allow-ssh&#8221; \\<br>&#8211;description &#8220;Allow SSH from anywhere&#8221; \\<br>&#8211;network &#8220;aws-vpn&#8221; &#8211;allow tcp:22 &#8211;source-ranges &#8220;0.0.0.0\/0&#8221;<\/em><\/p>\n\n\n\n<p>And, when the firewall rule is created, the following output appears:<\/p>\n\n\n\n<p><em>Creating firewall\u2026done.<br>NAME NETWORK SRC_RANGES RULES SRC_TAGS TARGET_TAGS<br>aws-vpn-allow-ssh aws-vpn 0.0.0.0\/0 tcp:22<\/em><\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Removing an external IP address from the proxy instance<\/strong><\/h4>\n\n\n\n<p>You must prevent the proxy instance from accidentally using a public IP address to reach Google Cloud APIs.<\/p>\n\n\n\n<p><strong>gcloud<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Firstly, determine the configuration name:<\/li><\/ul>\n\n\n\n<p><em>gcloud compute instances describe api-proxy | grep -A5 accessConfigs<\/em><\/p>\n\n\n\n<p>In the following example output, the configuration name for the external IP address is external-nat.<\/p>\n\n\n\n<p><em>accessConfigs:<\/em><\/p>\n\n\n\n<p><em>kind: compute#accessConfig<br>name: external-nat<br>natIP: 104.199.157.31<br>type: ONE_TO_ONE_NAT<br>kind: compute#networkInterface<\/em><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Secondly, remove the external IP address, specifying the configuration name from the previous step.<\/li><\/ul>\n\n\n\n<p><em>gcloud compute instances delete-access-config api-proxy &#8211;access-config-name &#8220;external-nat&#8221;<\/em><\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><a href=\"https:\/\/www.testpreptraining.ai\/google-cloud-certified-professional-cloud-architect-free-practice-test\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" width=\"750\" height=\"117\" src=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2021\/01\/Google-Certified-Professional-Cloud-Architect-prac-tests-750x117.png\" alt=\"gcp cloud architect practice tests\" class=\"wp-image-31460\" srcset=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2021\/01\/Google-Certified-Professional-Cloud-Architect-prac-tests-750x117.png 750w, https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2021\/01\/Google-Certified-Professional-Cloud-Architect-prac-tests.png 961w\" sizes=\"auto, (max-width: 750px) 100vw, 750px\" \/><\/a><\/figure><\/div>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Manage risk with controls<\/strong><\/h4>\n\n\n\n<p>Prior to creating and deploying resources on Google Cloud, assess the security features you need to meet your internal security requirements and external regulatory requirements. However, three control areas focus on mitigating risk are:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Firstly, technical controls refer to the features and technologies that you use to protect your environment. These include native cloud security controls, such as firewalls and enabling logging, and can also encompass third-party tools and vendors to reinforce or support your security strategy.<\/li><li>Secondly, Contractual protections refer to the legal commitments made by the cloud vendor around Google Cloud services.<\/li><li>Lastly, third-party verifications or attestations refer to having a third party audit the cloud provider to ensure that the provider meets compliance requirements. For example, Google was audited by a third party for ISO 27017 compliance.<\/li><\/ul>\n\n\n\n<p><strong>Technical controls<\/strong><\/p>\n\n\n\n<p>We start from the fundamental premise that Google Cloud customers own their data and control how it is used. The data a customer stores and manages on Google Cloud systems is only used to provide that customer with Google Cloud services and to make those services work better for them. Further, we have robust internal controls and auditing to protect against insider access to customer data. <\/p>\n\n\n\n<h6 class=\"wp-block-heading\"><strong>Contractual controls<\/strong><\/h6>\n\n\n\n<p>Google Cloud is committed to maintaining and expanding our compliance portfolio. The Data Processing and Security Terms (DPST) document defines our commitment to maintaining our ISO 27001, 27017, 27018 certifications. And also updating our SOC 2 and SOC 3 reports every 12 months. Further, the DPST also outlines the access controls in place to limit Google support engineers&#8217; access to customers&#8217; environments.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Implement compute security controls<\/strong><\/h4>\n\n\n\n<p>It is always a best practice to secure how you expose your resources to the network. Here are controls availabe in Google Kubernetes Engine (GKE) and Compute Engine.<\/p>\n\n\n\n<p><strong>Private IPs<\/strong><br>You can disable External IP access to your production VMs using organization policies. Moreover, you can deploy private clusters with Private IPs within GKE to limit possible network attacks.<\/p>\n\n\n\n<p><strong>Compute instance usage<\/strong><br>It&#8217;s also important to know who can spin up instances and access control using IAM because you can incur significant cost if there is a break-in. Further, Google Cloud lets you define custom quotas on projects to limit such activity. <\/p>\n\n\n\n<p><strong>Compute OS images<\/strong><br>Google provides you with curated OS images that are maintained and patched regularly. Although you can bring your own custom images and run them on Compute Engine, you still have to patch, update, and maintain them.<\/p>\n\n\n\n<h6 class=\"wp-block-heading\"><strong>GKE and Docker<\/strong><br>App Engine flexible runs application instances within Docker containers, letting you run any runtime. You can also enable SSH access to the underlying instances, we do not recommend this unless you have a valid business use case. Further, to provide infrastructure security for your cluster, GKE provides the ability to use IAM with role-based access control (RBAC) to manage access to your cluster and namespaces.<\/h6>\n\n\n\n<p><strong>Runtime security<\/strong><br>GKE integrates with various partner solutions for runtime security to provide you with robust solutions to monitor and manage your deployment. However, all these solutions can be built to integrate with Security Command Center, providing you with a single pane of glass.<\/p>\n\n\n\n<p><strong>Partner solutions for host-protection<\/strong><br>In addition to using curated hardened OS images provided by Google, you can use various Google Cloud partner solutions for host protection. Most partner solutions offered on Google Cloud integrate with Security Command Center, from where you can go to the partner portal for advanced threat analysis or extra runtime security. <\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><a href=\"https:\/\/www.testpreptraining.ai\/google-cloud-certified-professional-cloud-architect-practice-exam\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" width=\"750\" height=\"117\" src=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2021\/01\/Google-Certified-Professional-Cloud-Architect-online-course-750x117.png\" alt=\"Integration with external systems GCP cloud architect  online course\" class=\"wp-image-31461\" srcset=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2021\/01\/Google-Certified-Professional-Cloud-Architect-online-course-750x117.png 750w, https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2021\/01\/Google-Certified-Professional-Cloud-Architect-online-course.png 961w\" sizes=\"auto, (max-width: 750px) 100vw, 750px\" \/><\/a><\/figure><\/div>\n\n\n\n<p><strong>Reference:<\/strong> <a href=\"https:\/\/cloud.google.com\/solutions\/using-gcp-apis-from-an-external-network\" target=\"_blank\" rel=\"noreferrer noopener\">Google Documentation<\/a>, <a href=\"https:\/\/cloud.google.com\/architecture\/framework\/security-privacy-compliance\" target=\"_blank\" rel=\"noreferrer noopener\">Documentation 2<\/a><\/p>\n\n\n\n<p><strong><a href=\"https:\/\/www.testpreptraining.ai\/tutorial\/google-certified-professional-cloud-architect\/\" target=\"_blank\" rel=\"noreferrer noopener\">Go back to GCP Tutorials<\/a><\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Go back to GCP Tutorials In this tutorial we will understand about integration with external systems. Connecting Amazon VPC to your Google Cloud virtual network To establish the Amazon VPC, follow the instructions in Using Cloud VPN with Amazon Web Services, in the sections &#8220;Policy Based IPsec VPN: Configuration &#8211; AWS&#8221; and &#8220;Policy Based IPsec&#8230;<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"categories":[],"tags":[],"class_list":["post-31468","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Integration with external systems - Testprep Training Tutorials<\/title>\n<meta name=\"description\" content=\"Learn and understand about Integration with external systems using the Google Certified Professional Cloud Architect Course Now!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.testpreptraining.ai\/tutorial\/integration-with-external-systems\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Integration with external systems - Testprep Training Tutorials\" \/>\n<meta property=\"og:description\" content=\"Learn and understand about Integration with external systems using the Google Certified Professional Cloud Architect Course Now!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.testpreptraining.ai\/tutorial\/integration-with-external-systems\/\" \/>\n<meta property=\"og:site_name\" content=\"Testprep Training Tutorials\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2021\/01\/Google-Certified-Professional-Cloud-Architect-prac-tests-750x117.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/integration-with-external-systems\/\",\"url\":\"https:\/\/www.testpreptraining.ai\/tutorial\/integration-with-external-systems\/\",\"name\":\"Integration with external systems - Testprep Training Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#website\"},\"datePublished\":\"2021-01-13T11:58:16+00:00\",\"dateModified\":\"2021-01-13T11:58:16+00:00\",\"description\":\"Learn and understand about Integration with external systems using the Google Certified Professional Cloud Architect Course Now!\",\"breadcrumb\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/integration-with-external-systems\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.testpreptraining.ai\/tutorial\/integration-with-external-systems\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/integration-with-external-systems\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.testpreptraining.ai\/tutorial\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Integration with external systems\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#website\",\"url\":\"https:\/\/www.testpreptraining.ai\/tutorial\/\",\"name\":\"Testprep Training Tutorials\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.testpreptraining.ai\/tutorial\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#organization\",\"name\":\"Testprep Training\",\"url\":\"https:\/\/www.testpreptraining.ai\/tutorial\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.testpreptraining.com\/tutorial\/wp-content\/uploads\/2020\/07\/tpt-logo-6.png\",\"contentUrl\":\"https:\/\/www.testpreptraining.com\/tutorial\/wp-content\/uploads\/2020\/07\/tpt-logo-6.png\",\"width\":583,\"height\":153,\"caption\":\"Testprep Training\"},\"image\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Integration with external systems - Testprep Training Tutorials","description":"Learn and understand about Integration with external systems using the Google Certified Professional Cloud Architect Course Now!","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.testpreptraining.ai\/tutorial\/integration-with-external-systems\/","og_locale":"en_US","og_type":"article","og_title":"Integration with external systems - Testprep Training Tutorials","og_description":"Learn and understand about Integration with external systems using the Google Certified Professional Cloud Architect Course Now!","og_url":"https:\/\/www.testpreptraining.ai\/tutorial\/integration-with-external-systems\/","og_site_name":"Testprep Training Tutorials","og_image":[{"url":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2021\/01\/Google-Certified-Professional-Cloud-Architect-prac-tests-750x117.png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/integration-with-external-systems\/","url":"https:\/\/www.testpreptraining.ai\/tutorial\/integration-with-external-systems\/","name":"Integration with external systems - Testprep Training Tutorials","isPartOf":{"@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#website"},"datePublished":"2021-01-13T11:58:16+00:00","dateModified":"2021-01-13T11:58:16+00:00","description":"Learn and understand about Integration with external systems using the Google Certified Professional Cloud Architect Course Now!","breadcrumb":{"@id":"https:\/\/www.testpreptraining.ai\/tutorial\/integration-with-external-systems\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.testpreptraining.ai\/tutorial\/integration-with-external-systems\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/integration-with-external-systems\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.testpreptraining.ai\/tutorial\/"},{"@type":"ListItem","position":2,"name":"Integration with external systems"}]},{"@type":"WebSite","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#website","url":"https:\/\/www.testpreptraining.ai\/tutorial\/","name":"Testprep Training Tutorials","description":"","publisher":{"@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.testpreptraining.ai\/tutorial\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#organization","name":"Testprep Training","url":"https:\/\/www.testpreptraining.ai\/tutorial\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#\/schema\/logo\/image\/","url":"https:\/\/www.testpreptraining.com\/tutorial\/wp-content\/uploads\/2020\/07\/tpt-logo-6.png","contentUrl":"https:\/\/www.testpreptraining.com\/tutorial\/wp-content\/uploads\/2020\/07\/tpt-logo-6.png","width":583,"height":153,"caption":"Testprep Training"},"image":{"@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/pages\/31468","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/comments?post=31468"}],"version-history":[{"count":7,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/pages\/31468\/revisions"}],"predecessor-version":[{"id":31661,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/pages\/31468\/revisions\/31661"}],"wp:attachment":[{"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/media?parent=31468"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/categories?post=31468"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/tags?post=31468"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}