{"id":116,"date":"2026-07-03T06:27:50","date_gmt":"2026-07-03T06:27:50","guid":{"rendered":"https:\/\/wp.spain2.com\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\/"},"modified":"2026-07-03T07:02:57","modified_gmt":"2026-07-03T07:02:57","slug":"the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure","status":"publish","type":"post","link":"https:\/\/wp.spain2.com\/es\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\/","title":{"rendered":"The SMB Infrastructure Maturity Model: Level 2 \u2014 Centralized Infrastructure"},"content":{"rendered":"<h2>Recap: Where We Left Off<\/h2>\n<p>In <a href=\"https:\/\/wp.spain2.com\/the-smb-infrastructure-maturity-model-level-1-surviving-chaos\/\">Level 1: Surviving Chaos<\/a>, we tackled the fundamentals: version control for infrastructure, automated deployments, basic monitoring, and backup &#038; disaster recovery. If you&#8217;ve implemented those steps, you&#8217;ve moved from <strong>panic-driven operations<\/strong> to a <strong>repeatable foundation<\/strong>.<\/p>\n<p>Now it&#8217;s time for Level 2: <strong>Centralized Infrastructure Management<\/strong>.<\/p>\n<p>At Level 1, each team or service likely manages its own infrastructure independently. The DevOps team has their Terraform. The backend team has their Docker Compose files. The data team has their own scripts. This works for a while \u2014 until you realize:<\/p>\n<ul>\n<li>No one knows <strong>what&#8217;s actually running<\/strong> in production<\/li>\n<li>There are <strong>three different monitoring dashboards<\/strong>, all showing different things<\/li>\n<li>Each team has its <strong>own CI\/CD setup<\/strong> with different standards<\/li>\n<li>Onboarding a new service requires <strong>weeks of tribal knowledge transfer<\/strong><\/li>\n<li>Cost allocation is <strong>impossible<\/strong> \u2014 you can&#8217;t tell which service costs what<\/li>\n<\/ul>\n<p>Level 2 solves all of this by centralizing your infrastructure tooling, observability, and governance \u2014 <strong>without creating a bottleneck<\/strong> that slows teams down.<\/p>\n<h2>What &#8220;Centralized&#8221; Means (and Doesn&#8217;t Mean)<\/h2>\n<p>Let&#8217;s clear up a common misconception: centralization doesn&#8217;t mean <strong>one team controls everything<\/strong> and everyone else submits tickets. That&#8217;s the opposite of DevOps.<\/p>\n<p><strong>Centralized infrastructure means:<\/strong><\/p>\n<ul>\n<li>Shared tooling and platforms that every team uses<\/li>\n<li>Standardized patterns for deploying, monitoring, and scaling services<\/li>\n<li>Single source of truth for infrastructure state and costs<\/li>\n<li>Self-service capabilities so teams can deploy independently<\/li>\n<\/ul>\n<p><strong>It does NOT mean:<\/strong><\/p>\n<ul>\n<li>A single ops team as a bottleneck<\/li>\n<li>One-size-fits-all that doesn&#8217;t fit anyone<\/li>\n<li>Removing team autonomy and ownership<\/li>\n<\/ul>\n<h2>The Centralization Stack for SMBs<\/h2>\n<h3>1. Centralized Observability (Single Pane of Glass)<\/h3>\n<p>Every team should see the same dashboards, logging, and alerting. This is the <strong>highest-impact first step<\/strong> because it immediately reduces MTTR and eliminates the &#8220;whose dashboard is right?&#8221; problem.<\/p>\n<pre><code># docker-compose.observability.yml \u2014 Centralized observability stack\nversion: '3.8'\nservices:\n  prometheus:\n    image: prom\/prometheus\n    volumes:\n      - .\/prometheus.yml:\/etc\/prometheus\/prometheus.yml\n      - prometheus_data:\/prometheus\n    ports: [\"9090:9090\"]\n\n  grafana:\n    image: grafana\/grafana\n    depends_on: [prometheus]\n    ports: [\"3000:3000\"]\n    environment:\n      - GF_AUTH_ANONYMOUS_ENABLED=true\n    volumes:\n      - grafana_data:\/var\/lib\/grafana\n\n  loki:\n    image: grafana\/loki\n    ports: [\"3100:3100\"]\n    volumes:\n      - .\/loki-config.yml:\/etc\/loki\/local-config.yaml\n      - loki_data:\/loki\n\nvolumes:\n  prometheus_data:\n  grafana_data:\n  loki_data:<\/code><\/pre>\n<h3>2. Centralized Infrastructure Registry<\/h3>\n<p>Maintain a single inventory of every service, its dependencies, owners, and cost allocation. For SMBs, this doesn&#8217;t need to be fancy:<\/p>\n<pre><code># infrastructure.yml \u2014 Centralized service registry\nservices:\n  api-gateway:\n    owner: \"platform-team\"\n    repository: \"github.com\/org\/api-gateway\"\n    infrastructure: \"terraform\/environments\/prod\/api-gateway\"\n    monitoring: \"grafana\/dashboards\/api-gateway.json\"\n    alerts: \"pagerduty\/api-gateway\"\n    cloud_resources: [\"ecs:api-gateway-prod\", \"rds:api-gateway-db\"]\n    cost_center: \"platform\"\n    criticality: \"tier-1\"\n\n  user-service:\n    owner: \"backend-team\"\n    repository: \"github.com\/org\/user-service\"\n    infrastructure: \"terraform\/environments\/prod\/user-service\"\n    monitoring: \"grafana\/dashboards\/user-service.json\"\n    alerts: \"pagerduty\/user-service\"\n    cloud_resources: [\"ecs:user-service-prod\", \"rds:user-service-db\", \"elasticache:user-sessions\"]\n    cost_center: \"product\"\n    criticality: \"tier-1\"\n<\/code><\/pre>\n<h3>3. Centralized CI\/CD Platform<\/h3>\n<p>Instead of each team reinventing their CI\/CD, create a <strong>shared set of reusable workflows<\/strong>. In GitHub Actions, this means <a href=\"https:\/\/docs.github.com\/en\/actions\/using-workflows\/reusing-workflows\" target=\"_blank\">composite actions and reusable workflows<\/a>:<\/p>\n<pre><code># .github\/workflows\/deploy-template.yml \u2014 Reusable deploy workflow\non:\n  workflow_call:\n    inputs:\n      environment:\n        required: true\n        type: string\n      dockerfile:\n        default: Dockerfile\n        type: string\n    secrets:\n      deploy_key:\n        required: true\n\njobs:\n  deploy:\n    runs-on: ubuntu-latest\n    environment: ${{ inputs.environment }}\n    steps:\n      - uses: actions\/checkout@v4\n      - name: Build and test\n        run: |\n          docker build -f ${{ inputs.dockerfile }} -t app:latest .\n          docker run app:latest npm test\n      - name: Deploy\n        run: |\n          ssh deploy@host \"docker compose pull && docker compose up -d\"\n<\/code><\/pre>\n<p>Then teams consume it in one line:<\/p>\n<pre><code># .github\/workflows\/user-service.yml \u2014 Team-specific config\nname: Deploy User Service\non:\n  push:\n    branches: [main]\njobs:\n  deploy:\n    uses: .\/.github\/workflows\/deploy-template.yml\n    with:\n      environment: production\n    secrets:\n      deploy_key: ${{ secrets.DEPLOY_KEY }}<\/code><\/pre>\n<h3>4. Centralized Cost Management<\/h3>\n<p>You can&#8217;t optimize what you can&#8217;t measure. Set up cost allocation tagging across all cloud resources:<\/p>\n<pre><code># Tagging standard for all cloud resources\nRequired Tags:\n  - service: (name from registry)\n  - environment: (prod\/staging\/dev)\n  - team: (owning team name)\n  - cost-center: (product\/platform\/data\/infra)\n  - terraform: (true\/false)\n  - created-by: (tool\/username)<\/code><\/pre>\n<h2>Implementation Roadmap<\/h2>\n<h3>Week 1\u20132: Centralize Observability<\/h3>\n<p>Deploy Prometheus + Grafana + Loki. Migrate all teams to the same stack. Create standard dashboard templates for services.<\/p>\n<h3>Week 3\u20134: Build the Service Registry<\/h3>\n<p>Create an infrastructure YAML file (or use Backstage if you have more resources). Map every service and its dependencies.<\/p>\n<h3>Week 5\u20136: Standardize CI\/CD<\/h3>\n<p>Extract your most common pipeline into a reusable template. Migrate teams one at a time \u2014 don&#8217;t try to do all at once.<\/p>\n<h3>Week 7\u20138: Implement Cost Allocation<\/h3>\n<p>Apply tagging standards retroactively. Set up AWS Cost Explorer or GCP Cost Management dashboards by team and service.<\/p>\n<h2>Measuring Level 2 Success<\/h2>\n<p>You&#8217;ve graduated from Level 2 when:<\/p>\n<ul>\n<li>Any engineer can look at one dashboard to understand the <strong>health of all services<\/strong><\/li>\n<li>Onboarding a new service takes <strong>less than a day<\/strong> (not weeks)<\/li>\n<li>You can tell <strong>exactly how much each service costs<\/strong> per month<\/li>\n<li>Teams deploy independently using <strong>shared, battle-tested pipelines<\/strong><\/li>\n<li>The CEO can ask &#8220;how&#8217;s production?&#8221; and get a <strong>one-click answer<\/strong><\/li>\n<\/ul>\n<h2>What&#8217;s Next: Level 3 \u2014 Measured<\/h2>\n<p>Once your infrastructure is centralized and standardized, you can start <strong>measuring everything that matters<\/strong>: SLIs, SLOs, error budgets, and business impact metrics. That&#8217;s what Level 3 covers \u2014 and it&#8217;s where you transform from &#8220;keeping the lights on&#8221; to <strong>proactive reliability engineering<\/strong>.<\/p>\n<p>Stay tuned for the next installment, or <a href=\"\/servicios\">get a head start with our infrastructure assessment<\/a> \u2014 we&#8217;ll tell you exactly which level you&#8217;re at and what to prioritize next.<\/p>\n<hr \/>\n<p><strong>Need help implementing this in your company?<\/strong><br \/>\nWe help SMBs adopt these practices without hiring a full-time internal team.<br \/>\n<a href=\"\/reserva-cita\">Book a free consultation<\/a> and discover how we can transform your infrastructure.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Level 2 of the SMB Infrastructure Maturity Model series. Learn how to centralize observability, CI\/CD, and infrastructure management across your growing SMB.<\/p>","protected":false},"author":0,"featured_media":124,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[6],"tags":[],"class_list":["post-116","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>The SMB Infrastructure Maturity Model: Level 2 \u2014 Centralized Infrastructure - SPAIN2.COM<\/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:\/\/wp.spain2.com\/es\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"The SMB Infrastructure Maturity Model: Level 2 \u2014 Centralized Infrastructure - SPAIN2.COM\" \/>\n<meta property=\"og:description\" content=\"Level 2 of the SMB Infrastructure Maturity Model series. Learn how to centralize observability, CI\/CD, and infrastructure management across your growing SMB.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wp.spain2.com\/es\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\/\" \/>\n<meta property=\"og:site_name\" content=\"SPAIN2.COM\" \/>\n<meta property=\"article:published_time\" content=\"2026-07-03T06:27:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-03T07:02:57+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\\\/\"},\"author\":{\"name\":\"\",\"@id\":\"\"},\"headline\":\"The SMB Infrastructure Maturity Model: Level 2 \u2014 Centralized Infrastructure\",\"datePublished\":\"2026-07-03T06:27:50+00:00\",\"dateModified\":\"2026-07-03T07:02:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\\\/\"},\"wordCount\":651,\"publisher\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wp.spain2.com\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/featured-c.jpg\",\"articleSection\":[\"Tutorials &amp; Guides\"],\"inLanguage\":\"es\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\\\/\",\"url\":\"https:\\\/\\\/wp.spain2.com\\\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\\\/\",\"name\":\"The SMB Infrastructure Maturity Model: Level 2 \u2014 Centralized Infrastructure - SPAIN2.COM\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wp.spain2.com\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/featured-c.jpg\",\"datePublished\":\"2026-07-03T06:27:50+00:00\",\"dateModified\":\"2026-07-03T07:02:57+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\\\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/wp.spain2.com\\\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\\\/#primaryimage\",\"url\":\"https:\\\/\\\/wp.spain2.com\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/featured-c.jpg\",\"contentUrl\":\"https:\\\/\\\/wp.spain2.com\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/featured-c.jpg\",\"width\":1200,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/wp.spain2.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"The SMB Infrastructure Maturity Model: Level 2 \u2014 Centralized Infrastructure\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/#website\",\"url\":\"https:\\\/\\\/wp.spain2.com\\\/\",\"name\":\"SPAIN2.COM\",\"description\":\"Cloud Consulting That Delivers \u2014 DevOps, SRE &amp; Cloud Infrastructure for SMBs\",\"publisher\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/wp.spain2.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/#organization\",\"name\":\"SPAIN2.COM\",\"url\":\"https:\\\/\\\/wp.spain2.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/wp.spain2.com\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/spain2-logo.svg\",\"contentUrl\":\"https:\\\/\\\/wp.spain2.com\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/spain2-logo.svg\",\"caption\":\"SPAIN2.COM\"},\"image\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"The SMB Infrastructure Maturity Model: Level 2 \u2014 Centralized Infrastructure - SPAIN2.COM","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:\/\/wp.spain2.com\/es\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\/","og_locale":"es_ES","og_type":"article","og_title":"The SMB Infrastructure Maturity Model: Level 2 \u2014 Centralized Infrastructure - SPAIN2.COM","og_description":"Level 2 of the SMB Infrastructure Maturity Model series. Learn how to centralize observability, CI\/CD, and infrastructure management across your growing SMB.","og_url":"https:\/\/wp.spain2.com\/es\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\/","og_site_name":"SPAIN2.COM","article_published_time":"2026-07-03T06:27:50+00:00","article_modified_time":"2026-07-03T07:02:57+00:00","twitter_card":"summary_large_image","twitter_misc":{"Tiempo de lectura":"5 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/wp.spain2.com\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\/#article","isPartOf":{"@id":"https:\/\/wp.spain2.com\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\/"},"author":{"name":"","@id":""},"headline":"The SMB Infrastructure Maturity Model: Level 2 \u2014 Centralized Infrastructure","datePublished":"2026-07-03T06:27:50+00:00","dateModified":"2026-07-03T07:02:57+00:00","mainEntityOfPage":{"@id":"https:\/\/wp.spain2.com\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\/"},"wordCount":651,"publisher":{"@id":"https:\/\/wp.spain2.com\/#organization"},"image":{"@id":"https:\/\/wp.spain2.com\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\/#primaryimage"},"thumbnailUrl":"https:\/\/wp.spain2.com\/wp-content\/uploads\/2026\/07\/featured-c.jpg","articleSection":["Tutorials &amp; Guides"],"inLanguage":"es"},{"@type":"WebPage","@id":"https:\/\/wp.spain2.com\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\/","url":"https:\/\/wp.spain2.com\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\/","name":"The SMB Infrastructure Maturity Model: Level 2 \u2014 Centralized Infrastructure - SPAIN2.COM","isPartOf":{"@id":"https:\/\/wp.spain2.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/wp.spain2.com\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\/#primaryimage"},"image":{"@id":"https:\/\/wp.spain2.com\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\/#primaryimage"},"thumbnailUrl":"https:\/\/wp.spain2.com\/wp-content\/uploads\/2026\/07\/featured-c.jpg","datePublished":"2026-07-03T06:27:50+00:00","dateModified":"2026-07-03T07:02:57+00:00","breadcrumb":{"@id":"https:\/\/wp.spain2.com\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wp.spain2.com\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/wp.spain2.com\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\/#primaryimage","url":"https:\/\/wp.spain2.com\/wp-content\/uploads\/2026\/07\/featured-c.jpg","contentUrl":"https:\/\/wp.spain2.com\/wp-content\/uploads\/2026\/07\/featured-c.jpg","width":1200,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/wp.spain2.com\/the-smb-infrastructure-maturity-model-level-2-centralized-infrastructure\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wp.spain2.com\/"},{"@type":"ListItem","position":2,"name":"The SMB Infrastructure Maturity Model: Level 2 \u2014 Centralized Infrastructure"}]},{"@type":"WebSite","@id":"https:\/\/wp.spain2.com\/#website","url":"https:\/\/wp.spain2.com\/","name":"SPAIN2.COM","description":"Cloud Consulting That Delivers \u2014 DevOps, SRE &amp; Cloud Infrastructure for SMBs","publisher":{"@id":"https:\/\/wp.spain2.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wp.spain2.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/wp.spain2.com\/#organization","name":"SPAIN2.COM","url":"https:\/\/wp.spain2.com\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/wp.spain2.com\/#\/schema\/logo\/image\/","url":"https:\/\/wp.spain2.com\/wp-content\/uploads\/2026\/07\/spain2-logo.svg","contentUrl":"https:\/\/wp.spain2.com\/wp-content\/uploads\/2026\/07\/spain2-logo.svg","caption":"SPAIN2.COM"},"image":{"@id":"https:\/\/wp.spain2.com\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/posts\/116","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/types\/post"}],"replies":[{"embeddable":true,"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/comments?post=116"}],"version-history":[{"count":1,"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/posts\/116\/revisions"}],"predecessor-version":[{"id":117,"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/posts\/116\/revisions\/117"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/media\/124"}],"wp:attachment":[{"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/media?parent=116"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/categories?post=116"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/tags?post=116"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}