{"id":212325,"date":"2023-11-07T17:05:33","date_gmt":"2023-11-07T16:05:33","guid":{"rendered":"https:\/\/www.devoteam.com\/expert-view\/keep-your-azure-infrastructure-compliant-with-terraform-compliance\/"},"modified":"2024-11-29T13:32:04","modified_gmt":"2024-11-29T12:32:04","slug":"keep-your-azure-infrastructure-compliant-with-terraform-compliance","status":"publish","type":"expert-view","link":"https:\/\/devoteam.info\/dk\/ekspertartikler\/keep-your-azure-infrastructure-compliant-with-terraform-compliance\/","title":{"rendered":"Keep your Azure Infrastructure compliant with Terraform Compliance"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\"><strong>Ensure that your Azure resources consistently meet your organization&#8217;s standards and security requirements. Terraform Compliance is a resource-efficient tool that detects misconfigurations early.<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image alignright size-large is-resized\"><img decoding=\"async\" src=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/Keep-Your-Azure-Infrastructure-Compliant-with-Terraform-Compliance-scaled.jpg\" alt=\"\" class=\"wp-image-28196\" style=\"width:350px\"\/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><em>By Olga Kalyayeva, Cloud Solution Architect<\/em><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Compliance is an ever-evolving responsibility in cloud computing. As infrastructure continuously changes, there&#8217;s a need to align with both regulatory and internal company rules.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If mismanaged, compliance can become burdensome and costly. The objective is to identify as many misconfigurations as possible, ideally during development. Discovering issues later tends to be more expensive and more complex for developers to resolve.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-why-terraform-compliance-is-the-top-choice\">Why Terraform Compliance is the Top Choice<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Specializing in the <a href=\"https:\/\/dk.devoteam.com\/be-guided-by-natives\/\">Azure cloud<\/a>, I&#8217;ve assessed numerous tools for efficient infrastructure compliance. I settled on Terraform Compliance, paired naturally with Terraform. Terraform Compliance is an open-source framework designed to test and enforce compliance policies in infrastructure code. It ensures your infrastructure configurations adhere to your organization&#8217;s or regulatory standards concerning security, compliance, and best practices.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-understanding-azure-policy-effects\">Understanding Azure Policy Effects<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Before diving into Terraform Compliance, let\u2019s understand Azure infrastructure governance and compliance. To maintain compliance in Azure Cloud, you&#8217;ll work with Azure Policy and address any infractions. Azure Policy effects dictate actions when a policy rule aligns with a resource during an evaluation. Here are the primary effects:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>&#8216;Append&#8217;: Introduces specific fields or parameters during resource creation or updating.<\/li>\n\n\n\n<li>&#8216;Audit&#8217;: Logs a warning when a policy breach occurs during creation or updating but doesn&#8217;t halt the process.<\/li>\n\n\n\n<li>&#8216;AuditIfNotExists&#8217;: Logs a warning if a certain condition isn&#8217;t met.<\/li>\n\n\n\n<li>&#8216;Deny&#8217;: Blocks resource creation or updating if it breaks the policy.<\/li>\n\n\n\n<li>&#8216;DeployIfNotExists&#8217;: Initiates a remediation task to deploy a resource if a specific condition isn&#8217;t met.<\/li>\n\n\n\n<li>&#8216;Disabled&#8217;: Deactivates the policy rule. No evaluations occur, and the effect is nullified.<\/li>\n\n\n\n<li>&#8216;Modify&#8217;: Alters particular fields or parameters during resource creation or update. (Currently in preview).<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">\u2018Audit\u2019 policies inform you of resource misconfigurations and non-compliance, while &#8216;DeployIfNotExists&#8217; fixes configuration issues during deployment. &#8216;Deny&#8217; policies obstruct the deployment of non-compliant resources.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-enhanced-iac-compliance-with-terraform-compliance\">Enhanced IaC Compliance with Terraform Compliance<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">While Terraform&#8217;s Infrastructure as Code (IaC) in Azure can administer compliance checks, it&#8217;s not flawless. For instance, with \u2018Deny\u2019 policies, a failed Terraform deployment might leave the root cause ambiguous. Policies like \u2018DeployIfNotExists,\u2019 \u2018Append,\u2019 or \u2018Modify\u2019 can convolute the Terraform state file, leading to inaccurate outcomes.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Terraform Compliance addresses these hurdles by enabling negative IaC tests. While it doesn\u2019t wholly manage compliance, it significantly augments IaC compliance by pinpointing misconfigurations early, offering transparent feedback. Combined, these strategies culminate in a resilient, compliant Azure Cloud infrastructure.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Installing Terraform Compliance in a DevOps setting and integrating it into build pipelines is straightforward. You can find a lightweight test framework at <a href=\"https:\/\/terraform-compliance.com\/\">Terraform Compliance<\/a>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-how-to-use-terraform-compliance-sample-test-cases\">How to Use Terraform Compliance: Sample Test Cases<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">To illustrate Terraform Compliance usage and automation, consider the following test cases.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>1.<\/strong> Evaluating a single condition:<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><img decoding=\"async\" src=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/Evaluating-a-single-condition.png\" alt=\"\" class=\"wp-image-28173\"\/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>2.<\/strong> Running an array check, e.g., verifying NSG rules, so in this test case &lt;SourceAddressPrefix&gt; will be replaced with values from array and the test will be done 5 times &#8211; 1 for each value:<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><img decoding=\"async\" src=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/Running-in-array-check.png\" alt=\"\" class=\"wp-image-28181\"\/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>3.<\/strong> Terraform Compliance clarifies coding discrepancies:<br>You can see which resource is not compliant with which requirement. The screenshot shows 4 storage failed accounts because they didn\u2019t have blob_properties. You also can figure out the names of failed blob_storages.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><img decoding=\"async\" src=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/Terraform-compliance-clarifies-coding-discrepancies.png\" alt=\"\" class=\"wp-image-28189\"\/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Note that nuances always exist when framing steps for accurate checks. Consequently, I suggest using test codes to confirm the validity of the test cases.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>4.<\/strong> Making exclusions for specific test cases:<br>You can specify resource names to be ignored in the test cases.&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><img decoding=\"async\" src=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/Making-exclusions-for-specific-test-cases.png\" alt=\"\" class=\"wp-image-28191\"\/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Note that nuances always exist when framing steps for accurate checks. Consequently, I suggest using test codes to confirm the validity of the test cases.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-optimal-compliance-with-minimal-resources\">Optimal Compliance with Minimal Resources<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Both Terraform Compliance and Azure Policy can synergize to guarantee your infrastructure mirrors your organization&#8217;s compliance requirements. While Terraform Compliance doesn&#8217;t answer all compliance challenges, it substantially optimizes IaC compliance. It detects early misconfigurations, provides lucid feedback, and allows test case customization\u2014all with minimal resources. As a result, you achieve enhanced compliance efficiently and cost-effectively.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-we-re-here-to-assist-you-on-your-azure-journey\">We&#8217;re here to assist you on your Azure journey<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">For more insights on Azure infrastructure compliance or knowledge sharing, you are welcome to reach out to Olga at <a href=\"mailto:olga.kalyayeva@devoteam.com\">olga.kalyayeva@devoteam.com<\/a>. If you have any other inquiries, you can contact us via the button bellow.<\/p>\n\n\n","protected":false},"excerpt":{"rendered":"<p>Ensure that your Azure resources consistently meet your organization&#8217;s standards and security requirements. Terraform Compliance is a resource-efficient tool that detects misconfigurations early. By Olga Kalyayeva, Cloud Solution Architect Compliance is an ever-evolving responsibility in cloud computing. As infrastructure continuously changes, there&#8217;s a need to align with both regulatory and internal company rules. If mismanaged, [&hellip;]<\/p>\n","protected":false},"featured_media":0,"template":"","categories":[1053],"tags":[778],"industry":[],"class_list":["post-212325","expert-view","type-expert-view","status-publish","hentry","category-microsoft","tag-microsoft"],"acf":[],"cards":"\n\t<div class=\"single-post-card\">\n\n\t\t\n\n\t\t\n\t\t<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-43282307 wp-block-group-is-layout-flex\">\n\t<p style=\"font-style:normal;font-weight:700\" class=\"has-link-color wp-elements-1 wp-block-lp-post-type has-text-color has-primary-color has-small-font-size\">Ekspertartikler<\/p>\n\n\t\t\n\t\t<h3 style=\"font-style:normal;font-weight:400\" class=\"wp-block-post-title has-base-font-size\"><a href=\"https:\/\/devoteam.info\/dk\/ekspertartikler\/keep-your-azure-infrastructure-compliant-with-terraform-compliance\/\" target=\"_self\" >Keep your Azure Infrastructure compliant with Terraform Compliance<\/a><\/h3><\/div>\n\t\t\n\t<\/div>\n\n","yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v28.4 (Yoast SEO v28.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Keep your Azure Infrastructure compliant with Terraform Compliance | Devoteam<\/title>\n<meta name=\"description\" content=\"Discover how to ensure that your Azure resources consistently meet your organization&#039;s standards and security requirements in this article.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/devoteam.info\/dk\/ekspertartikler\/keep-your-azure-infrastructure-compliant-with-terraform-compliance\/\" \/>\n<meta property=\"og:locale\" content=\"da_DK\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Keep your Azure Infrastructure compliant with Terraform Compliance\" \/>\n<meta property=\"og:description\" content=\"Discover how to ensure that your Azure resources consistently meet your organization&#039;s standards and security requirements in this article.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/devoteam.info\/dk\/ekspertartikler\/keep-your-azure-infrastructure-compliant-with-terraform-compliance\/\" \/>\n<meta property=\"og:site_name\" content=\"Devoteam\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-29T12:32:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/Keep-Your-Azure-Infrastructure-Compliant-with-Terraform-Compliance-scaled-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1344\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimeret l\u00e6setid\" \/>\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:\\\/\\\/devoteam.info\\\/dk\\\/ekspertartikler\\\/keep-your-azure-infrastructure-compliant-with-terraform-compliance\\\/\",\"url\":\"https:\\\/\\\/devoteam.info\\\/dk\\\/ekspertartikler\\\/keep-your-azure-infrastructure-compliant-with-terraform-compliance\\\/\",\"name\":\"Keep your Azure Infrastructure compliant with Terraform Compliance | Devoteam\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/devoteam.info\\\/dk\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/devoteam.info\\\/dk\\\/ekspertartikler\\\/keep-your-azure-infrastructure-compliant-with-terraform-compliance\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/devoteam.info\\\/dk\\\/ekspertartikler\\\/keep-your-azure-infrastructure-compliant-with-terraform-compliance\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/devoteam.info\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/Keep-Your-Azure-Infrastructure-Compliant-with-Terraform-Compliance-scaled.jpg\",\"datePublished\":\"2023-11-07T16:05:33+00:00\",\"dateModified\":\"2024-11-29T12:32:04+00:00\",\"description\":\"Discover how to ensure that your Azure resources consistently meet your organization's standards and security requirements in this article.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/devoteam.info\\\/dk\\\/ekspertartikler\\\/keep-your-azure-infrastructure-compliant-with-terraform-compliance\\\/#breadcrumb\"},\"inLanguage\":\"da-DK\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/devoteam.info\\\/dk\\\/ekspertartikler\\\/keep-your-azure-infrastructure-compliant-with-terraform-compliance\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"da-DK\",\"@id\":\"https:\\\/\\\/devoteam.info\\\/dk\\\/ekspertartikler\\\/keep-your-azure-infrastructure-compliant-with-terraform-compliance\\\/#primaryimage\",\"url\":\"https:\\\/\\\/devoteam.info\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/Keep-Your-Azure-Infrastructure-Compliant-with-Terraform-Compliance-scaled.jpg\",\"contentUrl\":\"https:\\\/\\\/devoteam.info\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/Keep-Your-Azure-Infrastructure-Compliant-with-Terraform-Compliance-scaled.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/devoteam.info\\\/dk\\\/ekspertartikler\\\/keep-your-azure-infrastructure-compliant-with-terraform-compliance\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/devoteam.info\\\/dk\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Ekspertartikler\",\"item\":\"https:\\\/\\\/devoteam.info\\\/dk\\\/ekspertartikler\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Keep your Azure Infrastructure compliant with Terraform Compliance\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/devoteam.info\\\/dk\\\/#website\",\"url\":\"https:\\\/\\\/devoteam.info\\\/dk\\\/\",\"name\":\"Devoteam\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/devoteam.info\\\/dk\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"da-DK\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Keep your Azure Infrastructure compliant with Terraform Compliance | Devoteam","description":"Discover how to ensure that your Azure resources consistently meet your organization's standards and security requirements in this article.","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:\/\/devoteam.info\/dk\/ekspertartikler\/keep-your-azure-infrastructure-compliant-with-terraform-compliance\/","og_locale":"da_DK","og_type":"article","og_title":"Keep your Azure Infrastructure compliant with Terraform Compliance","og_description":"Discover how to ensure that your Azure resources consistently meet your organization's standards and security requirements in this article.","og_url":"https:\/\/devoteam.info\/dk\/ekspertartikler\/keep-your-azure-infrastructure-compliant-with-terraform-compliance\/","og_site_name":"Devoteam","article_modified_time":"2024-11-29T12:32:04+00:00","og_image":[{"width":1920,"height":1344,"url":"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/Keep-Your-Azure-Infrastructure-Compliant-with-Terraform-Compliance-scaled-1.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Estimeret l\u00e6setid":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/devoteam.info\/dk\/ekspertartikler\/keep-your-azure-infrastructure-compliant-with-terraform-compliance\/","url":"https:\/\/devoteam.info\/dk\/ekspertartikler\/keep-your-azure-infrastructure-compliant-with-terraform-compliance\/","name":"Keep your Azure Infrastructure compliant with Terraform Compliance | Devoteam","isPartOf":{"@id":"https:\/\/devoteam.info\/dk\/#website"},"primaryImageOfPage":{"@id":"https:\/\/devoteam.info\/dk\/ekspertartikler\/keep-your-azure-infrastructure-compliant-with-terraform-compliance\/#primaryimage"},"image":{"@id":"https:\/\/devoteam.info\/dk\/ekspertartikler\/keep-your-azure-infrastructure-compliant-with-terraform-compliance\/#primaryimage"},"thumbnailUrl":"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/Keep-Your-Azure-Infrastructure-Compliant-with-Terraform-Compliance-scaled.jpg","datePublished":"2023-11-07T16:05:33+00:00","dateModified":"2024-11-29T12:32:04+00:00","description":"Discover how to ensure that your Azure resources consistently meet your organization's standards and security requirements in this article.","breadcrumb":{"@id":"https:\/\/devoteam.info\/dk\/ekspertartikler\/keep-your-azure-infrastructure-compliant-with-terraform-compliance\/#breadcrumb"},"inLanguage":"da-DK","potentialAction":[{"@type":"ReadAction","target":["https:\/\/devoteam.info\/dk\/ekspertartikler\/keep-your-azure-infrastructure-compliant-with-terraform-compliance\/"]}]},{"@type":"ImageObject","inLanguage":"da-DK","@id":"https:\/\/devoteam.info\/dk\/ekspertartikler\/keep-your-azure-infrastructure-compliant-with-terraform-compliance\/#primaryimage","url":"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/Keep-Your-Azure-Infrastructure-Compliant-with-Terraform-Compliance-scaled.jpg","contentUrl":"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/11\/Keep-Your-Azure-Infrastructure-Compliant-with-Terraform-Compliance-scaled.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/devoteam.info\/dk\/ekspertartikler\/keep-your-azure-infrastructure-compliant-with-terraform-compliance\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/devoteam.info\/dk\/"},{"@type":"ListItem","position":2,"name":"Ekspertartikler","item":"https:\/\/devoteam.info\/dk\/ekspertartikler\/"},{"@type":"ListItem","position":3,"name":"Keep your Azure Infrastructure compliant with Terraform Compliance"}]},{"@type":"WebSite","@id":"https:\/\/devoteam.info\/dk\/#website","url":"https:\/\/devoteam.info\/dk\/","name":"Devoteam","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/devoteam.info\/dk\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"da-DK"}]}},"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false},"uagb_author_info":{"display_name":"Julien Pawlowski","author_link":"https:\/\/devoteam.info\/dk\/author\/"},"uagb_comment_info":0,"uagb_excerpt":"Ensure that your Azure resources consistently meet your organization&#8217;s standards and security requirements. Terraform Compliance is a resource-efficient tool that detects misconfigurations early. By Olga Kalyayeva, Cloud Solution Architect Compliance is an ever-evolving responsibility in cloud computing. As infrastructure continuously changes, there&#8217;s a need to align with both regulatory and internal company rules. If mismanaged,&hellip;","_links":{"self":[{"href":"https:\/\/devoteam.info\/dk\/wp-json\/wp\/v2\/expert-view\/212325","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/devoteam.info\/dk\/wp-json\/wp\/v2\/expert-view"}],"about":[{"href":"https:\/\/devoteam.info\/dk\/wp-json\/wp\/v2\/types\/expert-view"}],"version-history":[{"count":0,"href":"https:\/\/devoteam.info\/dk\/wp-json\/wp\/v2\/expert-view\/212325\/revisions"}],"wp:attachment":[{"href":"https:\/\/devoteam.info\/dk\/wp-json\/wp\/v2\/media?parent=212325"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/devoteam.info\/dk\/wp-json\/wp\/v2\/categories?post=212325"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/devoteam.info\/dk\/wp-json\/wp\/v2\/tags?post=212325"},{"taxonomy":"industry","embeddable":true,"href":"https:\/\/devoteam.info\/dk\/wp-json\/wp\/v2\/industry?post=212325"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}