{"id":6769,"date":"2026-01-19T13:31:32","date_gmt":"2026-01-19T12:31:32","guid":{"rendered":"https:\/\/onlu.ch\/?p=6769"},"modified":"2026-01-19T13:42:41","modified_gmt":"2026-01-19T12:42:41","slug":"gravitee-modern-api-management-for-the-digital-future","status":"publish","type":"post","link":"https:\/\/onlu.ch\/en\/gravitee-modern-api-management-for-the-digital-future\/","title":{"rendered":"Marktadoption von Ansible, Terraform &amp; Co."},"content":{"rendered":"\n<p>The automation of IT infrastructure is now a central component of modern DevOps strategies. Tools such as <strong>Ansible<\/strong> and <strong>Terraform<\/strong> have established themselves as de facto standards for configuration management and <em>Infrastructure as Code<\/em> (IaC). But how widespread are these tools actually on the market? And how do alternatives such as <strong>Puppet<\/strong>, <strong>Chef<\/strong> or <strong>Pulumi<\/strong> fare? In this article, we provide a realistic overview of market adoption, including a classification of the figures and a comparison of the technical approaches of the solutions.    <\/p>\n\n<h2 class=\"wp-block-heading\">Relative market shares of common tools<\/h2>\n\n<p>Based on several market analyses and DevOps surveys, the following approximate picture emerges for the <em>Configuration Management &amp; Infrastructure as Code<\/em> category:<\/p>\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Tool<\/th><th>Estimated relative market share (approx.)<\/th><\/tr><\/thead><tbody><tr><td>Terraform<\/td><td>35-36 %<\/td><\/tr><tr><td>Ansible<\/td><td>31-32 %<\/td><\/tr><tr><td>Puppet<\/td><td>12-13 %<\/td><\/tr><tr><td>Boss<\/td><td>6-7 %<\/td><\/tr><tr><td>Others <em>(Salt, Pulumi, CloudFormation, etc.)<\/em><\/td><td>~15 %<\/td><\/tr><\/tbody><\/table><\/figure>\n\n<p>\ud83d\udc49 <strong>Important:<\/strong> These values show the distribution within the tool category, <strong>not<\/strong> the global company coverage. It does not mean, for example, that 35% of all companies use Terraform &#8211; but that of the companies that use any such tool, around a third use Terraform.<\/p>\n\n<h2 class=\"wp-block-heading\">Classification by tool type<\/h2>\n\n<h3 class=\"wp-block-heading\">Ansible: simplicity and versatility<\/h3>\n\n<p><strong>Ansible<\/strong> is particularly popular because it:<\/p>\n\n<ul class=\"wp-block-list\">\n<li>works <strong>agentless<\/strong> (no permanent agent required on target systems)<\/li>\n\n\n\n<li>is relatively <strong>easy to learn<\/strong> (playbooks in YAML instead of a separate DSL)<\/li>\n\n\n\n<li>can be used for configuration management as well <em>as<\/em> for general automation tasks<\/li>\n<\/ul>\n\n<p>These features explain the strong adoption, especially in small to medium-sized teams that want to see results quickly without a lot of setup effort. For example, Ansible is ideal for customizing configurations on servers, performing deployments or scripting simple provisioning tasks without complicated infrastructure. <\/p>\n\n<h3 class=\"wp-block-heading\">Terraform: Standard for Infrastructure as Code<\/h3>\n\n<p><strong>Terraform<\/strong> dominates the IaC sector:<\/p>\n\n<ul class=\"wp-block-list\">\n<li><strong>Cloud independence<\/strong> (one tool for AWS, Azure, GCP and more)<\/li>\n\n\n\n<li>a <strong>declarative<\/strong> approach (the desired end state is described and the tool takes over the creation of this state)<\/li>\n\n\n\n<li>a large <strong>provider ecosystem<\/strong> (many ready-made modules for different platforms)<\/li>\n<\/ul>\n\n<p>In many organizations, Terraform is now the standard for provisioning cloud infrastructure. Entire <em>stacks<\/em> of resources &#8211; from networks and VMs to databases &#8211; can be defined as code. Terraform is often supplemented with Ansible: Terraform builds the infrastructure<em>(e.g.<\/em> cloud instances), Ansible then takes over the configuration within these instances.  <\/p>\n\n<h3 class=\"wp-block-heading\">Puppet &amp; Chef: Decline, but not gone<\/h3>\n\n<p><strong>Puppet<\/strong> and <strong>Chef<\/strong> were early market leaders in configuration management, but have been losing importance for years. The reasons for this include: <\/p>\n\n<ul class=\"wp-block-list\">\n<li><strong>Greater complexity<\/strong> in setup and use<\/li>\n\n\n\n<li>an <strong>agent-based<\/strong> architecture (requires installation of agents on all nodes and central servers)<\/li>\n\n\n\n<li>Strong <strong>competition from simpler tools<\/strong> such as Ansible, which enable a quicker start<\/li>\n<\/ul>\n\n<p>Nevertheless, Puppet and Chef can still be found in large enterprise environments &#8211; often from historically grown structures. They still fulfill important functions there, even if new projects tend to rely more on Terraform\/Ansible. <\/p>\n\n<h2 class=\"wp-block-heading\">Technical comparison of the solutions<\/h2>\n\n<p>In addition to distribution, it is worth taking a look at the <strong>technical differences between<\/strong> the individual tools. Each has its own approach in terms of architecture and application purpose: <\/p>\n\n<ul class=\"wp-block-list\">\n<li><strong>Architecture (agent vs. agentless):<\/strong> Ansible manages <em>without agents<\/em> &#8211; it connects directly to the target systems via SSH, for example (push model). Terraform also does not require agents on the target resources; it orchestrates infrastructure via API calls to cloud platforms. Puppet and Chef, on the other hand, work in the <strong>pull model<\/strong> with installed <strong>agents<\/strong> on the managed nodes, which regularly report to a central server. <em>Salt<\/em> is a hybrid: it uses a master-minion approach with lightweight agents (minions) and fast communication via ZeroMQ, for example.<\/li>\n\n\n\n<li><strong>Approach (declarative vs. procedural):<\/strong> Terraform and Puppet are primarily <strong>declarative<\/strong> &#8211; you describe the desired end state (infrastructure or system configuration), and the tool takes care of the implementation and ongoing maintenance of this state. Ansible and Chef take a more <strong>procedural<\/strong> approach: sequential steps\/recipes are defined that are executed to bring the system to the desired state. (Important: These steps are also usually idempotent, i.e. they can be executed repeatedly without unexpected side effects).  <\/li>\n\n\n\n<li><strong>Language and configuration format:<\/strong> Ansible uses YAML-based <em>playbooks<\/em> &#8211; easy to read and understand without programming knowledge. Terraform uses its own HashiCorp Configuration Language<strong>(HCL<\/strong>), which is JSON-like and declarative. Puppet uses a declarative <strong>Domain Specific Language (DSL)<\/strong>, while Chef relies on <strong>Ruby DSL<\/strong> (so-called <em>cookbooks<\/em> and <em>recipes<\/em>). Other tools such as Salt or Pulumi have their own approaches: Salt, for example, uses YAML combined with Jinja2 templates, while <strong>Pulumi<\/strong> allows common programming languages (Python, TypeScript, etc.) to be used for IaC. The choice of format has a significant influence on the <strong>learning curve<\/strong> &#8211; Ansible scores points here with its simplicity, while Puppet\/Chef require more software engineering know-how.   <\/li>\n\n\n\n<li><strong>Area of application:<\/strong> Terraform specializes in infrastructure <strong>provisioning<\/strong> &#8211; ideal for setting up cloud resources or providing entire environments via code. Ansible, Puppet and Chef are classic <strong>configuration management tools<\/strong> &#8211; they are used after the servers already exist to manage packages, services and configurations on them. Ansible also covers orchestration and ad-hoc scripting (e.g. executing commands in parallel on x servers). However, the boundaries are blurred: Ansible can also create VM instances in the cloud, for example, and Terraform offers rudimentary options for executing configuration scripts on newly created machines with <em>Provisioners<\/em>. Nevertheless: <strong>Terraform = provide infrastructure; Ansible\/Puppet\/Chef = configure systems.<\/strong>  <\/li>\n<\/ul>\n\n<p><strong>Conclusion of the technical comparison:<\/strong> Each tool has strengths in certain areas &#8211; and many organizations use several tools <strong>to complement each other<\/strong>. For example, it is common to provide the infrastructure with Terraform and then carry out the fine configuration with Ansible. Puppet and Chef are mainly used where continuous enforcement of configurations in large environments is required. Which tool is technically &#8220;the best&#8221; depends heavily on the intended use, the existing environments and the skills in the team.   <\/p>\n\n<h2 class=\"wp-block-heading\">DevOps context: Why the numbers are rising<\/h2>\n\n<p>Regardless of the individual tool, one thing is clear:<\/p>\n\n<ul class=\"wp-block-list\">\n<li>Over <strong>75%<\/strong> of organizations now use DevOps practices in some form. DevOps has become mainstream. <\/li>\n\n\n\n<li>The <strong>IaC market<\/strong> is growing <strong>at double-digit rates<\/strong> every year, as more and more companies are automating infrastructure and mapping it as code.<\/li>\n<\/ul>\n\n<p>This also increases the use of new or specialized tools:<\/p>\n\n<ul class=\"wp-block-list\">\n<li><strong>Terraform alternatives<\/strong> (e.g. OpenTofu as an open source fork, or proprietary offerings such as AWS CloudFormation) are gaining users.<\/li>\n\n\n\n<li><strong>Kubernetes-centric solutions<\/strong> such as <em>Crossplane<\/em> are used in cloud-native environments to manage infrastructure via Kubernetes APIs.<\/li>\n\n\n\n<li><strong>Program-controlled IaC tools<\/strong> such as <em>Pulumi<\/em> (Infrastructure as Code with common programming languages) show that new approaches are also finding favor alongside the established DSL tools.<\/li>\n<\/ul>\n\n<p>The general DevOps enthusiasm is therefore driving the entire category forward &#8211; both the top dogs Terraform\/Ansible and niche solutions are benefiting from this upswing.<\/p>\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n<ul class=\"wp-block-list\">\n<li><strong>Terraform and Ansible<\/strong> are currently the market-leading tools in their respective categories (provisioning vs. configuration management).<\/li>\n\n\n\n<li><strong>Terraform<\/strong> has the highest relative market share among infrastructure automation tools &#8211; closely followed by Ansible.<\/li>\n\n\n\n<li><strong>Puppet and Chef<\/strong> only play a minor role, but are still relevant and in use in the enterprise environment.<\/li>\n\n\n\n<li><strong>Exact global usage figures<\/strong> hardly exist &#8211; market shares must always be viewed in the right context (e.g. survey basis, region, sector).<\/li>\n\n\n\n<li><strong>IaC and automation<\/strong> remain growth drivers: the prevalence of these tools will continue to rise with increasing cloud and DevOps adoption.<\/li>\n<\/ul>\n\n<p>ONLU offers customized software development and IT consulting in Switzerland from <strong>Avaloq consulting<\/strong> and <strong>Finnova consulting<\/strong> to <strong>Abacus<\/strong> and <strong>API consulting<\/strong>, <strong>MCP consulting<\/strong> and IT management. With our highly skilled IT team focused on Artificial Intelligence and a modern cloud-native hybrid on-premises tech stack, we are able to develop future-proof applications and provide full-stack DevOps consulting services &#8211; including the integration of complex core systems such as Avaloq, Abacus, Syrius, Finnova and others. In this way, we ensure that banks, insurers and companies in other industries can <strong>securely and effectively<\/strong> exploit the benefits of automation and IaC for their business.  <\/p>\n","protected":false},"excerpt":{"rendered":"<p>The automation of IT infrastructure is now a central component of modern DevOps strategies. Tools such as Ansible and Terraform have established themselves as de facto standards for configuration management [&hellip;]<\/p>\n","protected":false},"author":15,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-6769","post","type-post","status-publish","format-standard","hentry","category-nicht-kategorisiert"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Marktadoption von Ansible, Terraform &amp; Co. - ONLU AG<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/onlu.ch\/en\/gravitee-modern-api-management-for-the-digital-future\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Marktadoption von Ansible, Terraform &amp; Co. - ONLU AG\" \/>\n<meta property=\"og:description\" content=\"The automation of IT infrastructure is now a central component of modern DevOps strategies. Tools such as Ansible and Terraform have established themselves as de facto standards for configuration management [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/onlu.ch\/en\/gravitee-modern-api-management-for-the-digital-future\/\" \/>\n<meta property=\"og:site_name\" content=\"ONLU AG\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-19T12:31:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-19T12:42:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/onlu.ch\/wp-content\/uploads\/2023\/07\/07072022_KLARA_onlu_DSF1509-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1920\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Alen Bisanovic\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Alen Bisanovic\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/onlu.ch\\\/en\\\/gravitee-modern-api-management-for-the-digital-future\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/onlu.ch\\\/en\\\/gravitee-modern-api-management-for-the-digital-future\\\/\"},\"author\":{\"name\":\"Alen Bisanovic\",\"@id\":\"https:\\\/\\\/onlu.ch\\\/en\\\/#\\\/schema\\\/person\\\/db39dd13ee204913eaf6f7dff29410ed\"},\"headline\":\"Marktadoption von Ansible, Terraform &amp; Co.\",\"datePublished\":\"2026-01-19T12:31:32+00:00\",\"dateModified\":\"2026-01-19T12:42:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/onlu.ch\\\/en\\\/gravitee-modern-api-management-for-the-digital-future\\\/\"},\"wordCount\":1309,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/onlu.ch\\\/en\\\/#organization\"},\"articleSection\":[\"Nicht kategorisiert\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/onlu.ch\\\/en\\\/gravitee-modern-api-management-for-the-digital-future\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/onlu.ch\\\/en\\\/gravitee-modern-api-management-for-the-digital-future\\\/\",\"url\":\"https:\\\/\\\/onlu.ch\\\/en\\\/gravitee-modern-api-management-for-the-digital-future\\\/\",\"name\":\"Marktadoption von Ansible, Terraform &amp; Co. - ONLU AG\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/onlu.ch\\\/en\\\/#website\"},\"datePublished\":\"2026-01-19T12:31:32+00:00\",\"dateModified\":\"2026-01-19T12:42:41+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/onlu.ch\\\/en\\\/gravitee-modern-api-management-for-the-digital-future\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/onlu.ch\\\/en\\\/gravitee-modern-api-management-for-the-digital-future\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/onlu.ch\\\/en\\\/gravitee-modern-api-management-for-the-digital-future\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\\\/\\\/onlu.ch\\\/en\\\/home-page\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Marktadoption von Ansible, Terraform &amp; Co.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/onlu.ch\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/onlu.ch\\\/en\\\/\",\"name\":\"ONLU AG\",\"description\":\"Massgeschneiderte Software \u2013 Ihr hoch-qualifiziertes IT Team\",\"publisher\":{\"@id\":\"https:\\\/\\\/onlu.ch\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/onlu.ch\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/onlu.ch\\\/en\\\/#organization\",\"name\":\"ONLU AG\",\"alternateName\":\"ONLU.CH\",\"url\":\"https:\\\/\\\/onlu.ch\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/onlu.ch\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/onlu.ch\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/onlu-logo-red-arrow.png\",\"contentUrl\":\"https:\\\/\\\/onlu.ch\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/onlu-logo-red-arrow.png\",\"width\":800,\"height\":221,\"caption\":\"ONLU AG\"},\"image\":{\"@id\":\"https:\\\/\\\/onlu.ch\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/ch.linkedin.com\\\/company\\\/onlu\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/onlu.ch\\\/en\\\/#\\\/schema\\\/person\\\/db39dd13ee204913eaf6f7dff29410ed\",\"name\":\"Alen Bisanovic\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/55beafe75ad24123a54917843b68e9408922ac7265ea8b582e1766411998320b?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/55beafe75ad24123a54917843b68e9408922ac7265ea8b582e1766411998320b?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/55beafe75ad24123a54917843b68e9408922ac7265ea8b582e1766411998320b?s=96&d=mm&r=g\",\"caption\":\"Alen Bisanovic\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Marktadoption von Ansible, Terraform &amp; Co. - ONLU AG","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:\/\/onlu.ch\/en\/gravitee-modern-api-management-for-the-digital-future\/","og_locale":"en_US","og_type":"article","og_title":"Marktadoption von Ansible, Terraform &amp; Co. - ONLU AG","og_description":"The automation of IT infrastructure is now a central component of modern DevOps strategies. Tools such as Ansible and Terraform have established themselves as de facto standards for configuration management [&hellip;]","og_url":"https:\/\/onlu.ch\/en\/gravitee-modern-api-management-for-the-digital-future\/","og_site_name":"ONLU AG","article_published_time":"2026-01-19T12:31:32+00:00","article_modified_time":"2026-01-19T12:42:41+00:00","og_image":[{"width":2560,"height":1920,"url":"https:\/\/onlu.ch\/wp-content\/uploads\/2023\/07\/07072022_KLARA_onlu_DSF1509-scaled.jpg","type":"image\/jpeg"}],"author":"Alen Bisanovic","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Alen Bisanovic","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/onlu.ch\/en\/gravitee-modern-api-management-for-the-digital-future\/#article","isPartOf":{"@id":"https:\/\/onlu.ch\/en\/gravitee-modern-api-management-for-the-digital-future\/"},"author":{"name":"Alen Bisanovic","@id":"https:\/\/onlu.ch\/en\/#\/schema\/person\/db39dd13ee204913eaf6f7dff29410ed"},"headline":"Marktadoption von Ansible, Terraform &amp; Co.","datePublished":"2026-01-19T12:31:32+00:00","dateModified":"2026-01-19T12:42:41+00:00","mainEntityOfPage":{"@id":"https:\/\/onlu.ch\/en\/gravitee-modern-api-management-for-the-digital-future\/"},"wordCount":1309,"commentCount":0,"publisher":{"@id":"https:\/\/onlu.ch\/en\/#organization"},"articleSection":["Nicht kategorisiert"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/onlu.ch\/en\/gravitee-modern-api-management-for-the-digital-future\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/onlu.ch\/en\/gravitee-modern-api-management-for-the-digital-future\/","url":"https:\/\/onlu.ch\/en\/gravitee-modern-api-management-for-the-digital-future\/","name":"Marktadoption von Ansible, Terraform &amp; Co. - ONLU AG","isPartOf":{"@id":"https:\/\/onlu.ch\/en\/#website"},"datePublished":"2026-01-19T12:31:32+00:00","dateModified":"2026-01-19T12:42:41+00:00","breadcrumb":{"@id":"https:\/\/onlu.ch\/en\/gravitee-modern-api-management-for-the-digital-future\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/onlu.ch\/en\/gravitee-modern-api-management-for-the-digital-future\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/onlu.ch\/en\/gravitee-modern-api-management-for-the-digital-future\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/onlu.ch\/en\/home-page\/"},{"@type":"ListItem","position":2,"name":"Marktadoption von Ansible, Terraform &amp; Co."}]},{"@type":"WebSite","@id":"https:\/\/onlu.ch\/en\/#website","url":"https:\/\/onlu.ch\/en\/","name":"ONLU AG","description":"Massgeschneiderte Software \u2013 Ihr hoch-qualifiziertes IT Team","publisher":{"@id":"https:\/\/onlu.ch\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/onlu.ch\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/onlu.ch\/en\/#organization","name":"ONLU AG","alternateName":"ONLU.CH","url":"https:\/\/onlu.ch\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/onlu.ch\/en\/#\/schema\/logo\/image\/","url":"https:\/\/onlu.ch\/wp-content\/uploads\/2023\/06\/onlu-logo-red-arrow.png","contentUrl":"https:\/\/onlu.ch\/wp-content\/uploads\/2023\/06\/onlu-logo-red-arrow.png","width":800,"height":221,"caption":"ONLU AG"},"image":{"@id":"https:\/\/onlu.ch\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/ch.linkedin.com\/company\/onlu"]},{"@type":"Person","@id":"https:\/\/onlu.ch\/en\/#\/schema\/person\/db39dd13ee204913eaf6f7dff29410ed","name":"Alen Bisanovic","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/55beafe75ad24123a54917843b68e9408922ac7265ea8b582e1766411998320b?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/55beafe75ad24123a54917843b68e9408922ac7265ea8b582e1766411998320b?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/55beafe75ad24123a54917843b68e9408922ac7265ea8b582e1766411998320b?s=96&d=mm&r=g","caption":"Alen Bisanovic"}}]}},"_links":{"self":[{"href":"https:\/\/onlu.ch\/en\/wp-json\/wp\/v2\/posts\/6769","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/onlu.ch\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/onlu.ch\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/onlu.ch\/en\/wp-json\/wp\/v2\/users\/15"}],"replies":[{"embeddable":true,"href":"https:\/\/onlu.ch\/en\/wp-json\/wp\/v2\/comments?post=6769"}],"version-history":[{"count":5,"href":"https:\/\/onlu.ch\/en\/wp-json\/wp\/v2\/posts\/6769\/revisions"}],"predecessor-version":[{"id":6777,"href":"https:\/\/onlu.ch\/en\/wp-json\/wp\/v2\/posts\/6769\/revisions\/6777"}],"wp:attachment":[{"href":"https:\/\/onlu.ch\/en\/wp-json\/wp\/v2\/media?parent=6769"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/onlu.ch\/en\/wp-json\/wp\/v2\/categories?post=6769"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/onlu.ch\/en\/wp-json\/wp\/v2\/tags?post=6769"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}