<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tom De Blende, Author at Cloudar</title>
	<atom:link href="https://cloudar.be/author/tom/feed/" rel="self" type="application/rss+xml" />
	<link>https://cloudar.be/author/tom/</link>
	<description>100% Focus On AWS // 100% Customer Obsession</description>
	<lastBuildDate>Thu, 09 Jul 2026 05:51:59 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.1</generator>
	<item>
		<title>FinAIOps: Why Token Economics Will Define Your AI Operations</title>
		<link>https://cloudar.be/awsblog/finaiops-token-economics/</link>
		
		<dc:creator><![CDATA[Tom De Blende]]></dc:creator>
		<pubDate>Thu, 09 Jul 2026 05:51:59 +0000</pubDate>
				<category><![CDATA[AI]]></category>
		<category><![CDATA[AWS]]></category>
		<category><![CDATA[AWS Blog]]></category>
		<category><![CDATA[FinOps]]></category>
		<category><![CDATA[Well-Architected]]></category>
		<category><![CDATA[Bedrock]]></category>
		<category><![CDATA[FinAIOps]]></category>
		<category><![CDATA[Token Economics]]></category>
		<guid isPermaLink="false">https://cloudar.be/?p=22794</guid>

					<description><![CDATA[<p>The token is the new gigabyte. Applying cloud cost discipline to AI workloads before the bill arrives.</p>
<p>The post <a href="https://cloudar.be/awsblog/finaiops-token-economics/">FinAIOps: Why Token Economics Will Define Your AI Operations</a> appeared first on <a href="https://cloudar.be">Cloudar</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Somewhere out there, a developer is teaching Claude to talk like a caveman. This is a real thing. A <a href="https://github.com/juliusbrussee/caveman" target="_blank" rel="noopener noreferrer">viral Claude Code skill</a> strips the articles, pleasantries, and filler out of the model&#8217;s responses, so a sentence like &#8220;the reason your component keeps re-rendering is likely that you are creating a new object reference on each render cycle&#8221; collapses into &#8220;new object ref each render, re-render, wrap in useMemo.&#8221; The reported saving is up to 75 percent fewer output tokens, with the technical content fully intact. Brain still big, as the skill&#8217;s author puts it. Mouth small.</p>
<p>It is the most primitive cost optimization imaginable, and the fact that people reach for it tells you exactly where AI operations are heading. Developers are willing to make their assistant grunt like a Neanderthal to trim a few thousand tokens off a session. Something changed to make that feel worth doing.</p>
<p>For the past two years, most of us have been running AI workloads on someone else&#8217;s dime. Flat-rate subscription plans made generative AI feel free at the point of use. Fire off as many prompts as you want, let your coding agent churn through refactors overnight, and the bill stays the same.</p>
<p>That era is ending. LLM providers are increasingly pushing heavy workloads toward usage-based pricing, credits, stricter rate limits, or token-metered APIs, and the reason is simple: the plans were too cheap. The compute behind a heavy agentic workload costs real money, and providers can no longer subsidize power users with the margins of light users. Rate limits are tightening, &#8220;unlimited&#8221; tiers are disappearing, and token-based billing is becoming the norm.</p>
<p>If you have ever watched an AWS bill balloon because nobody rightsized their EC2 fleet, you know exactly what happens next. The token is the new gigabyte, and we are about to relive the FinOps learning curve, this time for AI.</p>
<p>That is why we need FinAIOps: FinOps for AI systems, where LLMOps meets cost discipline in production. It is the practice of running AI workloads with the same operational and cost rigor we apply to everything else in the cloud.</p>
<h2>Lessons from building agents in production</h2>
<p>At Cloudar we have been building and running agentic AI workloads in production. Doing that teaches you very quickly where tokens go to die. These are the practices that made the biggest difference.</p>
<h3>1. Use smaller models for simpler tasks</h3>
<p>Not every task needs your most capable model. Agent routing, classification, and simple extraction run perfectly well on smaller, cheaper models. Reserve the frontier model for the reasoning-heavy steps. The per-token price difference between a frontier model and a small model on Bedrock is easily an order of magnitude, so a lightweight router that dispatches work to the right specialist pays for itself immediately.</p>
<p>This is where Amazon Bedrock shines: switching between model families and sizes is a configuration change, not a re-architecture. You can experiment with the cost and quality trade-off per task and measure the result.</p>
<h3>2. Gatekeep the agent: deterministic first</h3>
<p>The cheapest LLM call is the one you never make. If a task can be solved deterministically, solve it deterministically. Fetching a metric, checking a threshold, parsing a known log format: none of that needs an agent. Put a gate in front of your agent that handles the predictable cases with plain code and only escalates genuine ambiguity to the model.</p>
<h3>3. Keep prompts compact</h3>
<p>Prompts are tokens, and tokens are money. Every instruction, every example, every &#8220;please be helpful and thorough&#8221; costs you on every single invocation. Ruthlessly edit your system prompts. Say what you need, cut what you do not, and test whether shorter prompts degrade quality. Usually they do not.</p>
<h3>4. Limit the tools your MCP servers expose</h3>
<p>This one is underestimated. Every tool definition you expose to an agent is injected into the context on every call. It might feel convenient to give your agent the full toolbox, but a wall of tool schemas eats tokens before the agent has done any actual work.</p>
<p>Only expose the tools the agent genuinely needs. And when you do not know upfront which tools an agent will use, for example with open-ended investigative workloads, take an iterative approach: expose everything, have the agent write a short analysis after each run, and after a set period feed those results to an advanced model to analyze which tools earn their place and which can be dropped. Treat your tool catalog like an IAM policy: least privilege, reviewed regularly.</p>
<h3>5. Cap the loop</h3>
<p>Agentic workloads can run away. An agent stuck in a retry loop is the token equivalent of a Lambda retry storm. Set a maximum number of steps and tool calls per run, and a hard token budget per invocation. Fail loud, not expensive.</p>
<h3>6. Mind your outputs and your history</h3>
<p>For many frontier models, output tokens are priced significantly higher than input tokens. Ask for structured output instead of prose, set max_tokens deliberately, and instruct the model to be terse. And do not drag the full conversation history through every turn: summarize or window older context, because in long-running agents the context snowballs and you pay for all of it on every call.</p>
<h3>7. Use prompt caching</h3>
<p>On Bedrock, prompt caching lets you cache the static parts of your context, such as system prompts and tool definitions, and pay a fraction of the input price on subsequent calls. If you have a large tool catalog you cannot trim further, caching softens the blow considerably. Combined with point 4, this is one of the highest-impact optimizations available today.</p>
<h3>8. Batch what is not urgent</h3>
<p>Amazon Bedrock batch inference runs asynchronous workloads at a 50 percent discount compared to on-demand pricing. You submit a JSONL file with your prompts, Bedrock processes them asynchronously, and the results land in S3, typically within 24 hours. Periodic analysis jobs are a textbook example: nobody is waiting on the result, so there is no reason to pay real-time prices for it.</p>
<p>Bedrock also offers a Flex service tier for supported models, trading latency for lower cost. Unlike batch, Flex uses the regular invocation API: you add a service tier parameter to your call and accept increased latency in exchange for the lower rate. Availability and discount levels depend on the model and tier, so check the current pricing page before assuming the same economics as batch. It is a good fit for background agent runs that are real-time in shape but not in urgency.</p>
<p>The practices above, at a glance:</p>
<table>
<thead>
<tr>
<th>Optimization</th>
<th>Saves</th>
<th>Risk</th>
</tr>
</thead>
<tbody>
<tr>
<td>Smaller model routing</td>
<td>High</td>
<td>Quality regression</td>
</tr>
<tr>
<td>Deterministic gate</td>
<td>Very high</td>
<td>Missed ambiguity</td>
</tr>
<tr>
<td>Prompt trimming</td>
<td>Medium</td>
<td>Lost instructions</td>
</tr>
<tr>
<td>Tool pruning</td>
<td>High</td>
<td>Agent can&#8217;t act</td>
</tr>
<tr>
<td>Loop caps</td>
<td>Very high</td>
<td>Incomplete runs</td>
</tr>
<tr>
<td>Prompt caching</td>
<td>High</td>
<td>Cache eligibility limits</td>
</tr>
<tr>
<td>Batch inference</td>
<td>High</td>
<td>Latency</td>
</tr>
</tbody>
</table>
<h2>Measure it or it did not happen</h2>
<p>Optimization without measurement is guesswork. Two AWS capabilities matter here.</p>
<p><strong>Amazon CloudWatch</strong> gives you deep visibility into every dimension of your Bedrock usage. Bedrock publishes runtime metrics to the <code class="" data-line="">AWS/Bedrock</code> namespace, with <code class="" data-line="">ModelId</code> among the available dimensions. Which dimensions apply, and whether <code class="" data-line="">ModelId</code> alone is enough, depends on the model, Region, service tier, and whether you invoke through an inference profile, so treat any dashboard as a starting point rather than a template that works unchanged everywhere. The ones to watch:</p>
<ul>
<li><code class="" data-line="">Invocations</code>: how often each model is called</li>
<li><code class="" data-line="">InputTokenCount</code> and <code class="" data-line="">OutputTokenCount</code>: where your money actually goes</li>
<li><code class="" data-line="">InvocationLatency</code>: the quality side of the trade-off</li>
<li><code class="" data-line="">InvocationThrottles</code> and <code class="" data-line="">InvocationClientErrors</code>: the signals that an agent is misbehaving</li>
</ul>
<p>Build a dashboard on these, and set an alarm on token consumption. For example, a CloudWatch alarm on the hourly <code class="" data-line="">Sum</code> of <code class="" data-line="">OutputTokenCount</code> per model catches a runaway agent loop within the hour instead of on next month&#8217;s invoice:</p>
<pre><code class="language-bash" data-line="">aws cloudwatch put-metric-alarm \
  --alarm-name bedrock-output-token-spike \
  --namespace AWS/Bedrock \
  --metric-name OutputTokenCount \
  --dimensions Name=ModelId,Value=&lt;your-bedrock-model-id-or-inference-profile&gt; \
  --statistic Sum --period 3600 \
  --threshold 5000000 \
  --comparison-operator GreaterThanThreshold \
  --evaluation-periods 1 \
  --alarm-actions arn:aws:sns:eu-west-1:123456789012:ops-alerts
</code></pre>
<p>Replace the model ID with the exact model or inference profile dimension used in your account, since Bedrock model IDs are versioned and vary by Region and provider. Enable model invocation logging as well, so you can see the actual prompts behind an anomaly. Treat anomalous spend like any other operational incident.</p>
<p><strong>Bedrock application inference profiles</strong> let you tag usage per agent, per workflow, or per customer. You create a profile that wraps a foundation model, attach cost allocation tags, and invoke through the profile ARN instead of the model ID:</p>
<pre><code class="language-bash" data-line="">aws bedrock create-inference-profile \
  --inference-profile-name customer-a-investigator \
  --model-source copyFrom=arn:aws:bedrock:eu-west-1::foundation-model/anthropic.claude-sonnet-4-5 \
  --tags key=customer,value=customer-a key=agent,value=investigator
</code></pre>
<p>Those tags flow through to Cost Explorer and CloudWatch, turning &#8220;the AI bill is high&#8221; into &#8220;agent X on task Y for customer Z is driving the cost.&#8221; For a managed service provider, this is essential: it enables proper chargeback and shows customers exactly what their AI workloads cost.</p>
<p>Finally, track the metric that actually matters: cost per outcome. Tokens per completed task beats tokens per month. An agent that uses three times the tokens but delivers twice the results is the cheaper agent. That is the KPI that makes FinAIOps a business discipline instead of a savings exercise.</p>
<h2>The bill is coming. Be ready.</h2>
<p>The shift from plans to tokens is not a pricing tweak, it is a forcing function. Teams that treat AI as free will get the same surprise bills we saw in the early cloud days. Teams that apply FinAIOps discipline, right-sized models, gated invocations, lean prompts, curated tool catalogs, caching, batching, and real cost attribution, will run AI workloads that are both powerful and predictable.</p>
<p>We learned the hard way with EC2 that capacity discipline pays off. Let us not learn it the hard way again with tokens.</p>
<p>The post <a href="https://cloudar.be/awsblog/finaiops-token-economics/">FinAIOps: Why Token Economics Will Define Your AI Operations</a> appeared first on <a href="https://cloudar.be">Cloudar</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Leaving VMware is a question of timing</title>
		<link>https://cloudar.be/awsblog/leaving-vmware-is-a-question-of-timing/</link>
		
		<dc:creator><![CDATA[Tom De Blende]]></dc:creator>
		<pubDate>Wed, 01 Jul 2026 06:18:20 +0000</pubDate>
				<category><![CDATA[AWS Blog]]></category>
		<category><![CDATA[Migration]]></category>
		<guid isPermaLink="false">https://cloudar.be/?p=22759</guid>

					<description><![CDATA[<p>Broadcom rewrote the VMware rules and general support for VCF 8 ends on 11 October 2027. A phased migration to AWS, via Amazon EVS or AWS Application Migration Service to Amazon EC2, then modernization to AWS-native services, solves the immediate problem and the long-term one in the same move.</p>
<p>The post <a href="https://cloudar.be/awsblog/leaving-vmware-is-a-question-of-timing/">Leaving VMware is a question of timing</a> appeared first on <a href="https://cloudar.be">Cloudar</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>If you are still running on VMware today, you do not necessarily have a bad platform. But if you are still running on VMware tomorrow without a concrete migration plan, you have a strategic problem. Broadcom has rewritten the rules: unilaterally, definitively, and with little empathy for the customers who stayed loyal for years. I do not want to turn this into a lament about Broadcom, though. I want to explain why this is the ideal moment to make a decision you might otherwise keep postponing for years.</p>
<p>When Broadcom closed its acquisition of VMware, everyone in the industry knew something was going to change. Have we already forgotten what happened to Symantec, among others? Broadcom bought Symantec&#8217;s enterprise unit in 2019, narrowed it to around 2,000 of the largest accounts (the Global 2000), and raised prices on most of the rest. VMware is the same script on a bigger stage. The only surprise was how fast it came. In short order, perpetual licenses were scrapped, thousands of cloud partners (Cloudar among them) received a termination letter, and a catalogue of over 8,000 SKUs was reduced to two bundles (VMware Cloud Foundation and VMware vSphere Foundation). The shift from per-CPU-socket licensing to per-physical-core licensing also meant that organizations expecting to simply carry on with an existing installation were suddenly facing invoices two to five times higher.</p>
<p>But those cost increases are relative. The real impact only lands on 11 October 2027, when general support for VCF 8 ends. By that date, every VMware customer has to either migrate to VCF 9 at the new (read: higher) prices and under the new model, or be shown the back door and leave the platform behind.</p>
<p><strong>Not deciding is also a decision</strong></p>
<p>Big decisions like this get postponed fast. Or, in the alternative: you do not decide, and you take the hit. I understand the reflex. Migrations are complex. Infrastructure is critical. You do not want to take risks with production environments. And maybe you are thinking Broadcom will course-correct once the pressure builds. I do not want to give you false hope. By now there is plenty of evidence that Broadcom has no intention of changing course. The messaging is consistent, prices have not come down, and contract negotiations follow a tight, inflexible script.</p>
<p>More importantly, the migration window shrinks every month. A phased, carefully prepared migration of enterprise workloads takes two to three years in practice. If you only start evaluating in 2026, you have almost no room for a calm, controlled execution. The result of waiting too long is not that you end up with more options. It is that you are forced to choose between an expensive rushed migration and an extension with Broadcom at prices you do not actually want to pay. Everyone wins, except the end customer.</p>
<p>And if you are going to migrate anyway, why not move to another on-premises hypervisor? It might look like the most logical step. Nutanix, Proxmox, Microsoft Hyper-V: there are alternatives that keep the virtualization layer intact.</p>
<p>My answer is a nuanced one. For certain workloads with strict data-residency requirements or specific latency constraints, on-premises can remain relevant. But for most companies, switching to another hypervisor is only a stopgap. You solve the price increase, but you keep working with the same operational model. You still manage hardware, license renewals, capacity planning, and the staffing overhead that comes with all of it. On top of that, you trade one vendor dependency for another.</p>
<p>Staying on-premises carries a second problem beyond the licensing model. Hardware is becoming a scarce commodity, and so is datacenter floor space. Prices are going through the roof, and supply is no longer guaranteed.</p>
<p>AWS offers something structurally different: the option to move away from the virtualization layer over time. And getting there is no longer a leap of faith. If you want the smallest possible change on day one, Amazon Elastic VMware Service (Amazon EVS) runs VMware Cloud Foundation directly inside an Amazon VPC in your own AWS account, so the same vSphere, vSAN and NSX stack your team already operates lands on AWS without a re-architecture. If you would rather leave the hypervisor behind right away, AWS Transform MGN (formerly AWS Application Migration Service) replicates your virtual machines block by block and cuts them over to Amazon EC2 with minimal downtime, while AWS Transform for VMware automates the unglamorous parts: discovery, dependency mapping, network conversion, and right-sizing the target instances. The two paths trade off differently. Amazon EVS keeps your VMware stack intact, and with it the VMware licensing, but moves it off your own hardware and onto AWS as the fastest possible landing. The MGN route leaves the hypervisor, and the VMware license, behind outright. Either way your teams keep their existing way of working and do not have to relearn everything on day one.</p>
<p>That is the floor, not the ceiling. Once a workload runs on AWS you can modernize it on its own timeline, and only where the business case justifies it: move a self-managed database onto Amazon RDS or Amazon Aurora, lift a tier of servers into containers on Amazon ECS or Amazon EKS, replace a scheduled job with an AWS Lambda function, and reach for managed AI through Amazon Bedrock. None of that is realistic to run well on-premises, or it is simply too expensive to operate yourself. A like-for-like hypervisor swap does not get you here: it can lower the licensing bill, but the operational model and the eventual modernization are left untouched. Moving to AWS is the option where the immediate fix and the longer-term path share one destination.</p>
<p>We have been doing this at Cloudar for 12 years, and a lot of those conversations reveal the same pattern. At some point an organization made a sound technology choice. And today they find that the choice is holding them in a situation they can no longer defend, or no longer want to. VMware was an excellent choice for years. It was stable, well documented, broadly supported. But the lesson of the Broadcom acquisition is that vendor lock-in is not an abstract technical concern. It is a concrete business risk that, sometimes only after ten or fifteen years, shows up as something you simply have no alternative to.</p>
<p>Moving to AWS does not make that problem disappear entirely, of course. Every major cloud provider has its own ecosystem and its own logic. But the nature of the dependency changes fundamentally. In the cloud you pay for what you use, and you can decide workload by workload how and where you run it. The technical architecture of cloud-native services (open standards, open containers, open APIs) lets you switch when you want. That is structurally different from proprietary hypervisor software with a binary licensing logic. It lets you design with a solid exit scenario built in from the start.</p>
<p><strong>Start with insight, then migrate in phases</strong></p>
<p>Migrations rarely fail on the technology. They fail through a lack of preparation, unclear priorities, and too little attention to the human side of the process. The first step every organization should take is insight: which workloads are you running, what are the dependencies, and what is the real cost of your current VMware installation versus the alternatives? Only once that is clear can you make a rational decision. The tooling to get there has matured: AWS Transform for VMware can inventory a vSphere estate and map its dependencies automatically, and AWS Migration Hub tracks the moves once they start. A Migration Readiness Assessment that used to take months is now achievable in a few weeks.</p>
<p>This is where AWS has invested most visibly. AWS Transform, its agentic migration service, puts AI agents on the parts of a migration that used to eat months of consultant time: discovery, dependency mapping, wave planning, and network conversion, with the actual rehost driven through AWS Transform MGN. It is not VMware-only either; the same agents cover Windows and .NET modernization and mainframe workloads. AWS reports discovery that once took a quarter compressing to about a week, and landing-zone networking provisioned up to 70 percent faster. None of that removes the need to start early. It does mean the preparation that scared you off a year or two ago is no longer the bottleneck it was.</p>
<p>AWS can help fund a lot of this work through the Migration Acceleration Program (MAP). The assessment phase produces a workload inventory, a dependency map, and a costed business case, all of which are yours to keep, whichever direction you choose afterwards. For projects with a strong enough case, MAP can also offset a meaningful share of the migration cost itself. A migration partner runs the assessment and unlocks that funding on your behalf, which is the role we play at Cloudar.</p>
<p>The approach we recommend is phased. Start with the most portable workloads on Amazon EC2, which immediately eliminates the VMware license cost, then replatform workload by workload to AWS-native services as the business case justifies it. And in the meantime, put all new VMware deployments on ice. Every new workload you still put on VMware today is a workload you will have to migrate again later.</p>
<p>What I want to leave you with is this. The best migrations are the ones you carry out when you have the time and the space to do them well. You still have that time and space now, but the clock is ticking. As I write this, there are 467 days left until 11 October 2027. That may sound like a lot&#8230;</p>
<p>The post <a href="https://cloudar.be/awsblog/leaving-vmware-is-a-question-of-timing/">Leaving VMware is a question of timing</a> appeared first on <a href="https://cloudar.be">Cloudar</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>When the model goes dark: keeping your AI agent available on Amazon Bedrock</title>
		<link>https://cloudar.be/awsblog/when-the-model-goes-dark-keeping-your-ai-agent-available-on-amazon-bedrock/</link>
		
		<dc:creator><![CDATA[Tom De Blende]]></dc:creator>
		<pubDate>Tue, 23 Jun 2026 14:34:02 +0000</pubDate>
				<category><![CDATA[AI]]></category>
		<category><![CDATA[AWS Blog]]></category>
		<guid isPermaLink="false">https://cloudar.be/?p=22747</guid>

					<description><![CDATA[<p>Keeping an LLM-powered agent available when a model is unavailable: configuring fallbacks, running your own models, and the Bedrock pitfalls that are not just a config switch.</p>
<p>The post <a href="https://cloudar.be/awsblog/when-the-model-goes-dark-keeping-your-ai-agent-available-on-amazon-bedrock/">When the model goes dark: keeping your AI agent available on Amazon Bedrock</a> appeared first on <a href="https://cloudar.be">Cloudar</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>In June 2026, Anthropic abruptly disabled access to its most capable models, Fable 5 and Mythos 5, for every customer, after a US export-control directive barred foreign nationals from using them. Not a throttle. Not a deprecation notice with a migration window. A frontier model that worked on Friday was simply gone, for reasons that had nothing to do with uptime.</p>
<p>That is the uncomfortable part of putting an LLM-powered agent into production: you inherit a dependency that never shows up on the architecture diagram. Someone else&#8217;s model has to stay reachable for your system to do anything at all. Usually the ways it fails are mundane. The model gets throttled the week you need it most, or deprecated on the vendor&#8217;s timeline rather than yours, or it simply has a bad afternoon while your incident volume spikes. June was the reminder that it can also be a regulator drawing a line. Either way, the day it happens, your &#8220;autonomous&#8221; system is exactly as autonomous as a 500 error.</p>
<p>We had been building an operations agent that investigates tickets and reasons over live infrastructure, and we had already decided not to hard-wire it to a single model. The June suspension is what turned that from a prudent hedge into an obvious one, and it is why we are writing this up now. The agent is genuinely useful, which is the problem: the more people rely on it, the less acceptable &#8220;the model is unavailable right now&#8221; becomes as an answer. This post is how we think about that availability problem, why we landed on Amazon Bedrock as the foundation, and (more importantly) the things we got wrong on the way, because the interesting lessons are in the pitfalls, not the happy path.</p>
<p><strong>Two ways to stop betting the business on one model</strong></p>
<p>There are really only two structural answers to &#8220;what happens when my model is gone&#8221;:</p>
<ul>
<li><strong>Configure fallbacks.</strong> Have more than one model the agent can run on, and fail over when the primary is unavailable.</li>
<li><strong>Run your own model.</strong> Remove the third-party API from the critical path entirely, so availability is something you control rather than something you subscribe to.</li>
</ul>
<p>Both are sound. Both are also more subtle than they sound, and the subtlety is the whole point of this article. Neither is &#8220;set a second model ID and you&#8217;re done.&#8221;</p>
<p>The reason we built on Amazon Bedrock is that it makes both strategies reachable from one place. Through a single AWS IAM surface, one set of credentials, one regional endpoint, and one billing path, Bedrock gives you access to a large catalogue of foundation models from multiple providers. Via Amazon Bedrock Custom Model Import you can bring your own open-weight models, and Amazon Bedrock Marketplace adds a catalogue of others to deploy. You can layer Amazon Bedrock Guardrails across all of them as a provider-independent safety control, and you keep your data inside your chosen AWS Region. For a European services partner like us, whose customers are specific about where their data is processed, Region control often settles the whole approach before model quality even enters the conversation.</p>
<p>So far, so much like a Bedrock landing page. Here is where it got real for us.</p>
<p><strong>Pitfall 1: &#8220;swap the model ID&#8221; is an access abstraction, not an application one</strong></p>
<p>The single most useful mental model we developed is this distinction. Bedrock abstracts <em>access and transport</em>: one credential, one API, one bill, to reach many models. It does <em>not</em> abstract the request and response shape your application actually depends on.</p>
<p>When you start, you almost certainly reach for a provider&#8217;s own SDK or the request format of whichever model you adopted first. That code grows roots. Your agent loop parses the specific content-block shape that model returns: the way tool calls are represented, the field names, the IDs. Your retry logic, your streaming handling, your token accounting all quietly assume one family&#8217;s conventions. The moment you point that code at a different model family, the transport works perfectly and the parsing falls apart, because you didn&#8217;t insert a model-agnostic layer. You inserted one-vendor-on-Bedrock, which borrows Bedrock&#8217;s plumbing but speaks only one dialect.</p>
<p>Amazon Bedrock does offer a genuinely cross-model interface, the Converse API, which normalises messages and tool configuration into a common shape across many models. Most current foundation models on Bedrock are reachable through it, so adopting Converse from day one avoids a lot of this pain. The catch is at the edges: you trade away some of the richer, provider-specific surface, and a few models still expose their newest capabilities only through their own API shapes. A fully general agent can therefore end up maintaining more than one transport path anyway, which is exactly the situation the next point is about.</p>
<p>The lesson that generalises: <strong>build a thin internal seam early.</strong> Define one interface that your agent talks to, pick one canonical shape for messages and tool calls, and put each model family behind an adapter that translates its wire format to and from that shape. Concretely, the boundary is about this small:</p>
<pre class="wp-block-code"><code class="" data-line=""># one interface the agent depends on; one adapter per model family behind it
class ModelClient(Protocol):
    async def respond(self, messages: list[Block], tools: list[Tool]) -&gt; list[Block]: ...

# AnthropicClient, ConverseClient, ... each satisfy this and own the
# translation between their provider&#039;s wire format and the canonical Block.
def make_client(model_id: str) -&gt; ModelClient: ...  # fail-closed: unknown id raises</code></pre>
<p>Your dispatch loop only ever sees the canonical block, never a vendor payload. Make the factory <em>fail-closed</em>: an unrecognised model ID should raise, never silently route to a &#8220;best guess.&#8221; Fallback is only safe if the fallback path is one you&#8217;ve explicitly built and tested, not one your code stumbles into.</p>
<p>This is also why a framework like LangChain or LiteLLM is not a shortcut past the problem. It hands you a ready-made version of that seam across providers, which is genuinely useful, but it abstracts the wire format, not the behaviour. The per-model prompt sensitivity, the tool-calling quirks, the caching mechanics: those leak straight through any unified interface, yours or off-the-shelf.</p>
<p><strong>Pitfall 2: models are not drop-in equivalents, even at equal &#8220;quality&#8221;</strong></p>
<p>The second hard lesson is that two models can both be excellent and still not be interchangeable in your harness.</p>
<p>Concrete example: provider-specific prompt caching. The cost and latency model of an agent that re-sends a large tool-and-context preamble every turn depends heavily on prompt caching, and the way you mark cacheable spans (and even how many cache breakpoints you are allowed) is vendor-specific. Switch families and your carefully tuned caching strategy simply does not apply; your costs and latency move, sometimes sharply.</p>
<p>Another: model-version quirks. We found a specific model version would occasionally malform its tool calls in a way we had to detect and repair in the dispatch loop. That repair is correct for that version and meaningless for every other model. Tool-calling reliability, instruction-following under pressure, willingness to say &#8220;I don&#8217;t know&#8221; instead of fabricating: these vary enormously between models and are exactly the behaviours an agent lives or dies by.</p>
<p>So &#8220;best way to use a model&#8221; is real, and it is per-model: the prompt that gets the best out of one model is not the prompt that gets the best out of another, and the safety posture that one model respects, another ignores. A fallback model isn&#8217;t a spare tyre of the same size; it&#8217;s a different vehicle that happens to drive on the same roads. Treat the migration to it as a real piece of engineering, scoped and tested ahead of time, so that on the day you actually need it you are flipping a switch you have already proven.</p>
<p><strong>Pitfall 3: a fallback ladder is also a cost ladder</strong></p>
<p>The third consideration bites only after you have shipped: the model you fail over to has a different price, and the Region you are obliged to run it in has a different price again. On Bedrock these are two separate effects worth keeping straight. Token pricing varies widely by family, often by an order of magnitude between a frontier model and a lighter open-weight one, which is visible on the public Bedrock pricing page. Separately, Cross-Region inference itself does not add a surcharge: a request is billed at the inference profile&#8217;s published rate, which for current AWS profiles matches the on-demand rate of that profile&#8217;s primary Region. What moves the number is which profile you are obliged to use. The EU inference profile that keeps data in-region can sit above the cheapest on-demand Region for the same model. In our own cost modelling we carry roughly a 10% uplift on the EU inference-profile routes for our primary family against the equivalent US on-demand rate, and we treat that as the standing price of residency.</p>
<p>So a fallback ladder is also a cost ladder, and the two do not move together. Failing over to a cheaper open-weight model can save money while costing you quality; failing over to a residency-compliant route can cost more for the same model. Work both deltas out in advance, so a failover event doesn&#8217;t arrive as a billing surprise stacked on top of an incident.</p>
<p><strong>Where Bedrock genuinely shines: cheap, isolated, side-by-side evaluation</strong></p>
<p>Here is the flip side of all that subtlety: because every model lives behind the same Bedrock access surface, comparing them becomes an infrastructure problem you already know how to solve, not a procurement project per vendor.</p>
<p>We stood up a second, isolated runtime (same agent code, separate deployment, separate logs, separate metrics namespace) whose only job is to run candidate models against hard, representative tasks without touching production. A few design choices made this evaluation trustworthy, and they generalise well:</p>
<ul>
<li><strong>Isolate it at the infrastructure level, not by convention.</strong> A separate runtime, image tag, log group and metrics namespace mean eval traffic can never pollute production dashboards or alerts, and a candidate model can never accidentally take a real action. Make the isolation fail-closed: if the eval deployment is missing its explicit configuration, it should refuse to deploy rather than fall back to production settings.</li>
<li><strong>Grade blind.</strong> If the evaluation environment can read the &#8220;right answer&#8221; (a human&#8217;s resolution notes, a linked root-cause record), a weaker model can look strong by quietly reading the answer key. Strip those inputs so you are measuring reasoning, not retrieval of the solution.</li>
<li><strong>Run a harness-fit probe before you blame the model.</strong> When a candidate underperforms, the natural reaction is &#8220;our prompt isn&#8217;t tuned for it.&#8221; So test that hypothesis directly: harden the prompt specifically for the candidate and re-measure. Our most valuable single finding came from this: the gap between our primary model and the alternatives was mostly model-intrinsic, not a prompt artefact. That told us the seam was worth keeping for break-glass resilience, but that switching the default wasn&#8217;t justified yet. You only learn that by measuring.</li>
</ul>
<p>A safety note that bears repeating, because it surprised us: a &#8220;dry-run&#8221; flag that suppresses one kind of side effect doesn&#8217;t suppress all of them. In our case, suppressing the agent&#8217;s writes did not suppress its reads against live infrastructure. If a candidate model can call tools, those calls execute for real during evaluation. The durable backstop is least-privilege, read-only credentials at the boundary, not a flag in your application code. Defence in depth applies to your evaluation environment too.</p>
<p><strong>Running your own model: removing the API from the critical path</strong></p>
<p>Configuring fallbacks hedges against one model being unavailable. Running your own hedges against a different risk: not wanting your core workflow to depend on a third-party inference API at all, whether for sovereignty, predictable capacity, or a model fine-tuned on your own domain. The point of doing it on Bedrock is that the operational surface barely changes when the weights become yours: the same IAM controls and the same API, with Guardrails layered on where the model architecture supports them. Amazon Bedrock Custom Model Import brings supported open-weight architectures behind that surface; Amazon Bedrock Marketplace widens the catalogue; and Provisioned Throughput reserves dedicated capacity for steady, latency-sensitive load. Because the surface stays the same, a single seam can mix managed and self-hosted models on the same ladder.</p>
<p>The honest caveats are real but different from classic self-hosting. With Custom Model Import the serving and autoscaling stay AWS-managed (billed by Custom Model Units, with cold-start latency on an idle model), so what you take on is the cost model, the supported-architecture limits, and a quality bar an open-weight model may not clear for your task, not server ops. You only own capacity planning and scaling if you go all the way to your own Amazon SageMaker or EC2 endpoints, outside Bedrock. For most teams the right posture is a hybrid:</p>
<ul>
<li><strong>Primary: a strong managed model.</strong> Your default. The one you have evaluated hardest and trust unattended.</li>
<li><strong>Fallback: a tested alternative, break-glass.</strong> Already proven through the seam on a normal day, not discovered during an outage.</li>
<li><strong>Self-hosted: for workloads where control wins.</strong> Reserved for cases where sovereignty or capacity genuinely outweighs the operational cost.</li>
</ul>
<p><strong>What we&#8217;d tell our past selves</strong></p>
<ul>
<li><strong>Build the seam before you need it.</strong> One internal interface, one adapter per model family, fail-closed routing. Retrofitting this under outage pressure is miserable.</li>
<li><strong>Treat &#8220;switch to the fallback&#8221; as engineering, not configuration.</strong> Prompts, caching, tool-calling quirks, and safety posture are all per-model. Prove the fallback works on a normal day.</li>
<li><strong>Default to your best model; keep the alternative warm.</strong> The point of the seam often isn&#8217;t to leave your strongest model; it&#8217;s resilience and the option to re-evaluate as the field moves.</li>
<li><strong>Make evaluation a first-class, isolated environment.</strong> Blind grading and a harness-fit probe will tell you whether your problem is the model or your prompt, saving you from both over-engineering and false economy.</li>
<li><strong>Put the real safety control at the boundary.</strong> Read-only, least-privilege credentials and Guardrails protect you regardless of which model is behind the seam, including during evaluation.</li>
</ul>
<p>Those five are tactics. The shift underneath them is the real payoff. Amazon Bedrock did not make the model-specific subtlety disappear, and nothing will. What it changed is where the subtlety lives: behind one access surface, one security model, and one bill that we own, instead of scattered across vendor relationships we could only hope held. &#8220;Keep the agent running when a model goes dark&#8221; stopped being a procurement question and became an architecture decision.</p>
<p><em>Written at Cloudar, an AWS Premier Tier Services Partner. The lessons here come from production experience building AI-assisted operations tooling on AWS.</em></p>
<p>The post <a href="https://cloudar.be/awsblog/when-the-model-goes-dark-keeping-your-ai-agent-available-on-amazon-bedrock/">When the model goes dark: keeping your AI agent available on Amazon Bedrock</a> appeared first on <a href="https://cloudar.be">Cloudar</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Dear SaaS Vendor, We&#8217;ve Been Waiting Since 2017.</title>
		<link>https://cloudar.be/awsblog/dear-saas-vendor-weve-been-waiting-since-2017/</link>
		
		<dc:creator><![CDATA[Tom De Blende]]></dc:creator>
		<pubDate>Tue, 17 Mar 2026 07:27:19 +0000</pubDate>
				<category><![CDATA[Managed Services]]></category>
		<category><![CDATA[MSP]]></category>
		<category><![CDATA[Security & Compliance]]></category>
		<category><![CDATA[Serverless]]></category>
		<category><![CDATA[Well-Architected]]></category>
		<guid isPermaLink="false">https://cloudar.be/?p=22717</guid>

					<description><![CDATA[<p>Let me tell you about two feature requests. The first one was filed on November 19, 2017. Seven years ago. The ask: let an admin change a customer&#8217;s email address in Jira Service Management. Not migrate accounts through a four-step workaround involving Atlassian ID. Just&#8230; change an email address. The kind of thing you&#8217;d expect [&#8230;]</p>
<p>The post <a href="https://cloudar.be/awsblog/dear-saas-vendor-weve-been-waiting-since-2017/">Dear SaaS Vendor, We&#8217;ve Been Waiting Since 2017.</a> appeared first on <a href="https://cloudar.be">Cloudar</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Let me tell you about two feature requests.</p>
<p>The first one was filed on November 19, 2017. Seven years ago. The ask: let an admin change a customer&#8217;s email address in Jira Service Management. Not migrate accounts through a four-step workaround involving Atlassian ID. Just&#8230; change an email address. The kind of thing you&#8217;d expect a junior developer to ship on a Tuesday afternoon. As of today, it has 779 votes, 447 watchers, and a status of <em>&#8220;Future Consideration.&#8221;</em> Which, in SaaS-speak, translates roughly to: &#8220;we heard you, we filed it, please stop asking.&#8221;</p>
<p>The second one landed in January 2019. The request: make Confluence&#8217;s alphabetical page sorting persistent, so new pages don&#8217;t just pile up at the bottom like uninvited guests. Six years later: 600 votes, 261 watchers, status <em>&#8220;Under Consideration.&#8221;</em> Progress!</p>
<p>Now, to be fair to Atlassian, they&#8217;re not uniquely terrible. Every major SaaS vendor has a graveyard of feature requests exactly like these. Sensible, obvious, clearly wanted by thousands of paying customers. Just&#8230; never quite prioritized. Because they have a roadmap. And you&#8217;re not on it.</p>
<p>This is the part of the SaaS brochure they don&#8217;t show you.</p>
<p><strong>The Pitch vs. The Reality</strong></p>
<p>SaaS vendors are exceptionally good at one thing before you sign: making you feel like you&#8217;re about to get exactly what you need. The demos are polished. The slide decks are beautiful. The onboarding is smooth. Eighty percent of your requirements? Covered, on day one.</p>
<p>It&#8217;s that remaining twenty percent where things get interesting.</p>
<p>That twenty percent is where your actual workflows live. The edge cases. The things specific to how your organization actually operates. And when you file a support ticket asking about them, you enter a fascinating parallel universe where time moves differently. Features are &#8220;on the roadmap.&#8221; Updates will come &#8220;in a future release.&#8221; Your vote has been registered. Thank you for your feedback.</p>
<p>Meanwhile, you&#8217;re paying. Every month. For the product as it exists, not as it was promised.</p>
<p><strong>The Numbers Are Telling</strong></p>
<p>The scale of SaaS sprawl is difficult to overstate. According to BetterCloud&#8217;s annual State of SaaSOps report, the average number of SaaS applications per company peaked at 130 in 2022 and even after a wave of consolidation, still sits at over 100 today. That&#8217;s more than 100 subscriptions to manage, renew, secure, and integrate. For every single organization.</p>
<p>The waste embedded in that sprawl is just as striking. Gartner estimates that approximately 30% of purchased SaaS licenses go unused, what they bluntly call &#8220;toxic spend.&#8221; BetterCloud puts a price tag on it: companies report wasting an average of more than $135,000 per year on unused software licenses alone. And Gartner projects SaaS spending will continue growing at around 19% annually, reliably outpacing the budgets meant to fund it.</p>
<p>Do the arithmetic on a typical mid-market tool. Fifty users. €50 per user per month. That&#8217;s €30,000 per year. Every year. With annual price increases that arrive in your renewal email as a polite fait accompli. After five years, you&#8217;ve spent €150,000-plus on software you don&#8217;t own, can&#8217;t modify, and can&#8217;t easily leave and somewhere between a quarter and a third of those licenses have been sitting idle.</p>
<p><strong>Something Changed</strong></p>
<p>Here&#8217;s what&#8217;s different in 2026: building software got dramatically cheaper and faster. Not incrementally but by an order of magnitude.</p>
<p>Tools like Claude Code and Kiro represent a new category of agentic coding assistants. They don&#8217;t just suggest the next line. They can take a requirement, reason through a solution, write the code, test it, catch errors, and iterate, with minimal human supervision. What previously required a team of developers and months of work can now be done by one technically capable person in days.</p>
<p>This isn&#8217;t science fiction. It&#8217;s happening right now in engineering teams across the world.</p>
<p>And it fundamentally changes the math on one of the oldest questions in IT: should we build or buy?</p>
<p><strong>What You Get When You Build Your Own</strong></p>
<p>When you build a custom application -even a relatively simple internal tool- you build exactly what you need. No more, no less. You control the data model, the workflow, the integrations, and the roadmap. And critically: you decide what gets built next. Not a product manager in Sydney who&#8217;s never seen your workflows.</p>
<p>Running on cloud-native infrastructure like AWS means scalability, security, and availability are largely handled by the platform. The operational gap between &#8220;something you built&#8221; and &#8220;something a vendor hosts for you&#8221; has narrowed considerably. And the cost gap has flipped.</p>
<p>A custom-built equivalent to that €30,000/year SaaS tool, developed with AI-assisted tooling and running on serverless AWS infrastructure, might cost a fraction of that annually in operational expenses, after a one-time build investment that has also come down dramatically. More importantly: you own the asset. It does exactly what you need. And you&#8217;re not waiting seven years for someone to let you update an email address.</p>
<p><strong>A Word of Honesty</strong></p>
<p>Custom software isn&#8217;t free of responsibility. Someone has to maintain it, secure it, and evolve it. The SaaS argument, that someone else handles the infrastructure, the uptime and the patches, is not without merit. And for commodity functions like email, video conferencing, or payroll, that argument still wins. These are solved problems. Building your own would be an expensive act of reinvention.</p>
<p>But pairing custom-built applications with managed cloud services gives you the operational coverage of SaaS without the product dependency. You get uptime. You get security. You get to decide what comes next.</p>
<p><strong>So What Should You Actually Do?</strong></p>
<p>Not everything should be custom-built. That would be its own kind of madness.</p>
<p>The question worth asking is simpler: where are your core differentiating workflows? The processes that encode years of operational knowledge. The edge cases that keep showing up in feature request threads, yours and everyone else&#8217;s, year after year, status unchanged.</p>
<p>Those are exactly the features that will never quite make it onto a SaaS vendor&#8217;s roadmap.</p>
<p>The question is no longer &#8220;can we afford to build?&#8221; The question, in 2026, is whether you can afford to keep waiting.</p>
<p>JSDCLOUD-5746 would like a word.</p>
<p>The post <a href="https://cloudar.be/awsblog/dear-saas-vendor-weve-been-waiting-since-2017/">Dear SaaS Vendor, We&#8217;ve Been Waiting Since 2017.</a> appeared first on <a href="https://cloudar.be">Cloudar</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>The Hidden Cost of Convenience</title>
		<link>https://cloudar.be/awsblog/the-hidden-cost-of-convenience/</link>
		
		<dc:creator><![CDATA[Tom De Blende]]></dc:creator>
		<pubDate>Fri, 17 Oct 2025 11:23:39 +0000</pubDate>
				<category><![CDATA[MSP]]></category>
		<category><![CDATA[AWS]]></category>
		<category><![CDATA[Managed Services]]></category>
		<guid isPermaLink="false">https://cloudar.be/?p=22650</guid>

					<description><![CDATA[<p>When choosing an AWS Managed Service Provider (MSP), most organizations focus on immediate benefits: faster deployment, expert guidance, and managed operations. But there&#8217;s a critical question that often gets overlooked until it&#8217;s too late: What happens when you want to leave? In the AWS ecosystem, MSPs take vastly different approaches when building customer-specific landing zones [&#8230;]</p>
<p>The post <a href="https://cloudar.be/awsblog/the-hidden-cost-of-convenience/">The Hidden Cost of Convenience</a> appeared first on <a href="https://cloudar.be">Cloudar</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>When choosing an AWS Managed Service Provider (MSP), most organizations focus on immediate benefits: faster deployment, expert guidance, and managed operations. But there&#8217;s a critical question that often gets overlooked until it&#8217;s too late: <strong>What happens when you want to leave?</strong></p>
<p>In the AWS ecosystem, MSPs take vastly different approaches when building customer-specific landing zones and cloud management platforms. Some approaches preserve your freedom and flexibility. Others quietly build the walls of a gilded cage.</p>
<h1><strong>The Two Paths: Open Standards vs. Proprietary Platforms</strong></h1>
<h2><em><strong>The Open Approach: AWS Landing Zone Accelerator (LZA)</strong></em></h2>
<p>AWS Landing Zone Accelerator represents the gold standard for customer independence. As an open-source solution built on AWS CDK and CloudFormation, we deploy LZA to provide several critical advantages:</p>
<ul>
<li><strong>Complete transparency</strong>: All infrastructure is defined as code that you can read, understand, and modify</li>
<li><strong>No licensing fees</strong>: Open-source with no proprietary components</li>
<li><strong>AWS-maintained</strong>: Continuously updated by AWS to keep up to date with new services and features</li>
<li><strong>Industry standard configuration:</strong> With multiple documented sample configurations, you do not need to start from scratch.</li>
<li><strong>Full customer ownership</strong>: Deployed directly into your environment with complete access to the Infrastructure as Code</li>
<li><strong>Exit-ready from day one</strong>: If you ever want to manage it yourself or switch MSPs, you own your landing zone configuration</li>
</ul>
<p>At Cloudar, we&#8217;ve built an entire landing zone practice around LZA precisely because we believe customers should never feel trapped. Your AWS foundation should be an asset you own, not a chain that binds you to any single provider.</p>
<h2><em><strong>The Proprietary Approach: Custom Orchestration Platforms</strong></em></h2>
<p>In contrast, many MSPs have developed proprietary cloud management platforms that create significant lock-in. These are often marketed as &#8220;revolutionary&#8221; or &#8220;next-generation&#8221; platforms that promise to make cloud management easier with &#8220;just a few simple clicks&#8221; or web-based portals that abstract away complexity.</p>
<p>The convenience is real. The long-term cost is hidden.</p>
<p>Here&#8217;s what proprietary platforms typically involve:</p>
<ul>
<li><strong>Black box deployment</strong>: Resources are created through proprietary tooling that abstracts away the underlying infrastructure</li>
<li><strong>Dependency on custom APIs</strong>: Your operations become dependent on the MSP&#8217;s platform rather than native AWS tools</li>
<li><strong>Limited portability</strong>: Moving to another MSP or bringing management in-house requires re-platforming</li>
<li><strong>Knowledge gap</strong>: Your team never develops deep expertise in AWS native tools because they&#8217;re shielded by the abstraction layer</li>
<li><strong>Commercial leverage</strong>: The MSP knows that switching costs are high, affecting pricing negotiations and service quality over time</li>
</ul>
<h1><strong>The Lock-in Mechanisms You Need to Watch For</strong></h1>
<ol>
<li><strong> Custom Landing Zones Without Source Code Access</strong></li>
</ol>
<p>Some MSPs deploy your resources using &#8220;their&#8221; landing zone—a pre-configured multi-account setup built with proprietary Infrastructure as Code that remains their intellectual property. When you want to leave, you inherit an AWS environment you don&#8217;t fully understand, configured by tools you can&#8217;t access.</p>
<p><strong>The Cloudar difference</strong>: We can deploy LZA directly into your AWS accounts. Every CloudFormation stack, every configuration file, every security baseline—you have access to it all.</p>
<ol start="2">
<li><strong> Web-Based Orchestrators That Become Operational Chokepoints</strong></li>
</ol>
<p>Fancy web portals that let you &#8220;deploy with one click&#8221; sound appealing. Until you realize that every operational change must flow through the MSP&#8217;s platform. Want to modify a VPC? You&#8217;re dependent on their UI. Need to adjust security groups? Better hope their platform supports your use case.</p>
<p>These orchestrators create <strong>operational lock-in</strong>: You can&#8217;t effectively operate your AWS environment without the MSP&#8217;s tooling. You&#8217;ve traded AWS complexity for MSP dependency.</p>
<ol start="3">
<li><strong> &#8220;Simplified&#8221; Interfaces That Hide AWS Reality</strong></li>
</ol>
<p>Abstraction layers that promise to &#8220;make AWS easy&#8221; can create a dangerous gap between what you think you&#8217;re deploying and what&#8217;s actually running in your account. When problems arise—and they always do—you discover that your team doesn&#8217;t understand the actual AWS infrastructure because they&#8217;ve only interacted with it through the MSP&#8217;s simplified interface.</p>
<h1><strong>The Real-World Impact of Lock-in</strong></h1>
<p><strong>Scenario 1: The Price Increase</strong></p>
<p>Your MSP announces a 30% price increase. With an LZA you own and open standards, you have options: negotiate from a position of strength, bring management in-house, or transition to another MSP in months. With a proprietary platform, you&#8217;re looking at risky and arduous re-platforming work—and your MSP knows it.</p>
<p><strong>Scenario 2: The Service Quality Decline</strong></p>
<p>Your MSP gets acquired. The new parent company shifts focus, key engineers leave, and service quality drops. With an open approach, you can transition smoothly. With lock-in, you&#8217;re stuck enduring declining service while planning an expensive migration.</p>
<p><strong>Scenario 3: The Strategic Pivot</strong></p>
<p>Your company wants to build internal cloud expertise and eventually self-manage. With LZA, your team can learn standard AWS tools and practices from day one. When you&#8217;re ready to transition, you already have the skills and the code. With proprietary platforms, your team has learned the MSP&#8217;s tools, not AWS—setting your in-house capability building back by years.</p>
<p><strong>Scenario 4: The Platform Limitation</strong></p>
<p>Your business needs evolve, and you need to implement a complex AWS architecture that isn&#8217;t supported by your MSP&#8217;s platform. You&#8217;re now in the worst position: paying for a platform that constrains you, unable to use native AWS capabilities, and facing the choice between living with limitations or undertaking an expensive re-platforming project.</p>
<h1><strong>How to Evaluate Your Current or Prospective MSP</strong></h1>
<p>Ask these critical questions:</p>
<ol>
<li><strong>&#8220;What landing zone solution do you use?&#8221;</strong>
<ul>
<li>Red flag: &#8220;Our proprietary solution&#8221; or vague answers. Subscription based landing zones (yes they exist!).</li>
<li>Green flag: &#8220;your own AWS Landing Zone Accelerator&#8221; or &#8220;a per-customer AWS Control Tower with Customizations for Control Tower&#8221;</li>
</ul>
</li>
<li><strong>&#8220;What happens to our infrastructure if we terminate the contract?&#8221;</strong>
<ul>
<li>Red flag: Vague answers about &#8220;transition planning&#8221; or &#8220;it depends&#8221;</li>
<li>Green flag: &#8220;You keep everything—we&#8217;ll help with knowledge transfer, and you&#8217;ll have all the code and documentation&#8221;</li>
</ul>
</li>
<li><strong>&#8220;Will our team learn AWS-native tools, or primarily your platform?&#8221;</strong>
<ul>
<li>Red flag: &#8220;Our platform abstracts AWS complexity away&#8221;</li>
<li>Green flag: &#8220;We teach AWS best practices and native tools&#8221;</li>
</ul>
</li>
</ol>
<h1><strong>The Cloudar Philosophy: Your Cloud, Your Terms</strong></h1>
<p>Here&#8217;s what that means in practice:</p>
<p><strong>Full LZA Implementation</strong></p>
<p>Every customer gets its own AWS Landing Zone Accelerator, deployed directly into their accounts with complete source code access to the LZA configuration. Deployments happen in your account, giving you end-to-end visibility on your Landing Zone.</p>
<p><strong>AWS-Native Tooling</strong></p>
<p>We use CloudFormation, CDK, AWS Config, Systems Manager—tools that work with or without us. If you hire another AWS expert or build an in-house team, they&#8217;ll recognize everything immediately.</p>
<p><strong>Comprehensive Documentation</strong></p>
<p>You can read about every configuration option today, in the documentation published by AWS. So while we pride ourselves in sharing our knowledge, you are not dependant on us to explain what is going on</p>
<p>Additionally, we write customer-specific documentation  in our Confluence – from architecture decisions to operational procedures.. If you decide to leave, we can provide you with an export of that information.</p>
<p><strong>Open Book Operations</strong></p>
<p>You have full Read Only access to your AWS environment —we&#8217;re partners, not gatekeepers. Want to check our work? Go ahead.</p>
<p><strong>Standard AWS Best Practices</strong></p>
<p>We follow AWS Well-Architected Framework principles and industry-standard patterns. No &#8220;special sauce&#8221; that only we understand.</p>
<p>We succeed by giving you excellent service so you want to stay, not by making it painful to leave.</p>
<p><strong>The Economics of Freedom</strong></p>
<p>Some argue that proprietary platforms are necessary to provide better service or lower costs. We disagree.</p>
<p><strong>Lower costs come from:</strong></p>
<ul>
<li>Automation that scales across customers (which we use)</li>
<li>Deep AWS expertise (which we have)</li>
<li>Efficient processes (which we&#8217;ve refined over years)</li>
</ul>
<p>Not from locking customers into proprietary platforms.</p>
<p><strong>Better service comes from:</strong></p>
<ul>
<li>Highly skilled engineers (which we continuously train)</li>
<li>Customer focus (which our retention rate proves)</li>
<li></li>
</ul>
<p>Not from proprietary abstraction layers.</p>
<p>We&#8217;ve proven that you can deliver excellent MSP services at competitive prices while keeping customers completely free. In fact, we believe customer freedom makes us <em>better</em>—we can&#8217;t coast on lock-in, so we must continuously earn our customers&#8217; business.</p>
<h1><strong>Making the Right Choice</strong></h1>
<p>Before signing with any MSP, ask yourself:</p>
<ul>
<li><strong>Do I understand what I&#8217;m getting into?</strong> Can you clearly explain how your infrastructure will be deployed and managed?</li>
<li><strong>What&#8217;s my exit strategy if things don&#8217;t work out?</strong> Is it measured in weeks, months, or years?</li>
<li><strong>Am I choosing this approach for the right reasons?</strong> Is convenience masking a lack of control?</li>
<li><strong>Do I retain full ownership?</strong> Of code, configurations, documentation, and knowledge?</li>
</ul>
<p><strong>Red Flags in MSP Sales Processes</strong></p>
<p>Be wary if you encounter:</p>
<ul>
<li><strong>Heavy emphasis on &#8220;simplicity&#8221; with little discussion of the underlying AWS architecture</strong></li>
<li><strong>Vague answers about exit strategies and transition processes</strong></li>
<li><strong>Marketing focused on proprietary platforms as the primary differentiator</strong></li>
<li><strong>Contracts that grant the MSP exclusive rights to infrastructure code</strong></li>
<li><strong>Lack of clarity about what you actually own vs. what you&#8217;re licensing</strong></li>
</ul>
<h1><strong>Conclusion: Freedom as a Feature</strong></h1>
<p>In the rush to cloud transformation, it&#8217;s easy to prioritize speed and convenience. And yes, a well-designed proprietary platform can deploy faster than custom LZA implementation—at least initially.</p>
<p>But cloud strategy isn&#8217;t measured in weeks. It&#8217;s measured in years and decades. The question isn&#8217;t &#8220;who can get me to cloud fastest?&#8221; It&#8217;s &#8220;who can help me build sustainable cloud capabilities that serve my business long-term?&#8221;</p>
<p>The MSP industry has a pattern: some providers build their business model around customer stickiness achieved through proprietary tooling. They create beautiful interfaces and slick demos that abstract away AWS complexity. Then, months or years later, customers realize they&#8217;ve traded AWS vendor lock-in for MSP vendor lock-in—often worse, because at least AWS is standardized.</p>
<p>At Cloudar, we reject this model fundamentally. We believe that <strong>customer freedom isn&#8217;t a bug to work around—it&#8217;s a feature to build for.</strong> We&#8217;re proud to be an AWS Premier MSP Partner that wins business through excellence, not lock-in.</p>
<p>Your cloud infrastructure is too important to be held hostage by convenient abstractions. You deserve an MSP that treats you as a partner who will grow and evolve, not a captive customer who might someday try to escape.</p>
<p>Choose partners who believe you should always have the keys to your own kingdom. Choose partners who succeed by being valuable, not by being necessary.</p>
<p>Choose freedom.</p>
<p>The post <a href="https://cloudar.be/awsblog/the-hidden-cost-of-convenience/">The Hidden Cost of Convenience</a> appeared first on <a href="https://cloudar.be">Cloudar</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Cloudar renews AWS MSP partnership</title>
		<link>https://cloudar.be/awsblog/cloudar-renews-aws-msp-partnership/</link>
		
		<dc:creator><![CDATA[Tom De Blende]]></dc:creator>
		<pubDate>Fri, 28 Feb 2025 09:44:14 +0000</pubDate>
				<category><![CDATA[Cloudar news]]></category>
		<category><![CDATA[Company news]]></category>
		<category><![CDATA[Managed Services]]></category>
		<category><![CDATA[MSP]]></category>
		<guid isPermaLink="false">https://cloudar.be/?p=22536</guid>

					<description><![CDATA[<p>Cloudar Renews AWS MSP Partnership with a Perfect Score! At Cloudar, we are very proud to announce that we have successfully renewed our AWS Managed Service Provider (MSP) partnership for the second time—and with a perfect score! This achievement further solidifies our position as a leading AWS MSP, ensuring that our clients receive the highest [&#8230;]</p>
<p>The post <a href="https://cloudar.be/awsblog/cloudar-renews-aws-msp-partnership/">Cloudar renews AWS MSP partnership</a> appeared first on <a href="https://cloudar.be">Cloudar</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong><img decoding="async" class=" wp-image-22537 alignleft" src="https://cloudar.be/wp-content/uploads/2025/02/AWS-Partner_Managed-Service-Provider_1200x900_Logo.bb3d333b36678f02c259ee84aa87638383727747-650x433.png" alt="" width="177" height="118" srcset="https://cloudar.be/wp-content/uploads/2025/02/AWS-Partner_Managed-Service-Provider_1200x900_Logo.bb3d333b36678f02c259ee84aa87638383727747-650x433.png 650w, https://cloudar.be/wp-content/uploads/2025/02/AWS-Partner_Managed-Service-Provider_1200x900_Logo.bb3d333b36678f02c259ee84aa87638383727747-325x217.png 325w" sizes="(max-width: 177px) 100vw, 177px" />Cloudar Renews AWS MSP Partnership with a Perfect Score!</strong></p>
<p>At Cloudar, we are very proud to announce that we have successfully renewed our <a href="https://aws.amazon.com/partners/programs/msp/" target="_blank" rel="noopener">AWS Managed Service Provider (MSP)</a> partnership for the second time—and with a perfect score! This achievement further solidifies our position as a leading AWS MSP, ensuring that our clients receive the highest level of cloud expertise and managed services.</p>
<p><strong>A Hard-Earned Accreditation</strong></p>
<p>Achieving the AWS MSP competency is no easy feat. The renewal process involves an extensive and rigorous two-day external audit, where AWS evaluates a company’s capabilities in security, automation, DevOps, customer success and more. This intensive assessment ensures that only the best-in-class providers are recognized, and we are happy to have met and exceeded every requirement.</p>
<p><strong>A Six-Year Legacy of Excellence</strong></p>
<p>Cloudar has been an authorized AWS MSP for six years, continuously demonstrating our ability to deliver exceptional managed services to our clients. This designation reaffirms our deep expertise in AWS technologies, proactive monitoring, and automation, helping businesses optimize their cloud environments while focusing on their core operations.</p>
<p><strong>The Only Belgium-Based AWS MSP</strong></p>
<p>We take great pride in being the only AWS MSP headquartered in Belgium. In a competitive and ever-evolving cloud landscape, this distinction highlights our unwavering commitment to excellence and customer satisfaction. Our local team of AWS-certified experts works tirelessly to provide best-in-class cloud solutions tailored to each client’s needs.</p>
<p><strong>An Exclusive Global Network</strong></p>
<p>The AWS MSP designation is highly exclusive, with only 185 companies worldwide holding this prestigious competency. As part of this elite group, Cloudar continues to set the standard for managed cloud services, ensuring businesses maximize their AWS investments.</p>
<p><strong>Why Work with an AWS MSP?</strong></p>
<p>Partnering with an AWS MSP like Cloudar means businesses can focus on what truly matters: delivering value and innovation. Our expert team handles the complexity of cloud management, security, and optimization, allowing organizations to drive efficiency, reduce costs, and scale with confidence.</p>
<p>We are incredibly proud of this accomplishment and remain dedicated to helping businesses thrive in the cloud. Thank you to our customers, partners, and the entire Cloudar team for making this achievement possible!</p>
<p>Looking for a trusted AWS MSP partner? Get in touch with us today and discover how Cloudar can elevate your cloud journey!</p>
<p>The post <a href="https://cloudar.be/awsblog/cloudar-renews-aws-msp-partnership/">Cloudar renews AWS MSP partnership</a> appeared first on <a href="https://cloudar.be">Cloudar</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Shop Local</title>
		<link>https://cloudar.be/awsblog/shop-local/</link>
		
		<dc:creator><![CDATA[Tom De Blende]]></dc:creator>
		<pubDate>Mon, 22 Jan 2024 08:11:13 +0000</pubDate>
				<category><![CDATA[AWS Blog]]></category>
		<category><![CDATA[FinOps]]></category>
		<guid isPermaLink="false">https://cloudar.be/?p=21968</guid>

					<description><![CDATA[<p>Why choose a Local AWS Partner over a Global System Integrator? At Cloudar, we pride ourselves on being the only local Premier AWS partner in Belgium. While global system integrators (GSIs) offer their services on a massive scale, we believe that being a smaller, local player comes with unique advantages. In this post, we&#8217;ll explore [&#8230;]</p>
<p>The post <a href="https://cloudar.be/awsblog/shop-local/">Shop Local</a> appeared first on <a href="https://cloudar.be">Cloudar</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>Why choose a Local AWS Partner over a Global System Integrator?</h2>
<p>At Cloudar, we pride ourselves on being the only local Premier AWS partner in Belgium. While global system integrators (GSIs) offer their services on a massive scale, we believe that being a smaller, local player comes with unique advantages. In this post, we&#8217;ll explore the benefits of partnering with a local AWS expert like us compared to working with a large GSI.</p>
<h3>1. Personalized Attention and Customized Solutions</h3>
<p>Unlike larger firms where clients might feel like just another number, we provide personalized attention to each of our clients. Our team takes the time to understand your specific needs, crafting customized AWS solutions that align perfectly with your business objectives. This tailored approach ensures that your company receives the exact support it needs to thrive.</p>
<h3>2. Agility and Flexibility</h3>
<p>In today&#8217;s fast-paced business world, agility is key. Our smaller size allows us to make quick decisions and adapt to your needs rapidly. This flexibility extends to our service offerings, ensuring scalability that supports your business&#8217;s growth every step of the way.</p>
<p><img fetchpriority="high" decoding="async" class="size-medium wp-image-21969 aligncenter" src="https://cloudar.be/wp-content/uploads/2024/01/tim-mossholder-qvWnGmoTbik-unsplash-2000x1200-1-650x433.jpg" alt="" width="650" height="433" srcset="https://cloudar.be/wp-content/uploads/2024/01/tim-mossholder-qvWnGmoTbik-unsplash-2000x1200-1-650x433.jpg 650w, https://cloudar.be/wp-content/uploads/2024/01/tim-mossholder-qvWnGmoTbik-unsplash-2000x1200-1-1300x867.jpg 1300w, https://cloudar.be/wp-content/uploads/2024/01/tim-mossholder-qvWnGmoTbik-unsplash-2000x1200-1-325x217.jpg 325w" sizes="(max-width: 650px) 100vw, 650px" /></p>
<p>&nbsp;</p>
<h3>3. Local Market Understanding</h3>
<p>Our in-depth knowledge of the Belgian market sets us apart. We&#8217;re not just AWS experts; we&#8217;re experts in how AWS services can best be utilized in Belgium, considering local regulations and market trends. This local insight is invaluable for ensuring compliance and tailoring solutions that work best in our specific market environment.</p>
<h3>4. Direct Communication and Stronger Relationships</h3>
<p>Working with us means you&#8217;ll have direct access to our team of experts. At Cloudar we don&#8217;t work with offshoring or nearshoring. This ease of communication fosters stronger, more meaningful relationships. We&#8217;re not just a service provider; we&#8217;re a partner invested in understanding and contributing to the long-term success of your business.</p>
<h3>5. Competitive Pricing and Cost-Effectiveness</h3>
<p>We offer competitive pricing that challenges larger GSIs, ensuring that you receive top-notch AWS services without an exorbitant price tag. This cost-effectiveness is part of our commitment to providing value, ensuring that your investment in AWS services yields the maximum return.</p>
<h3>6. Community Engagement and Support</h3>
<p>As a local business, we&#8217;re deeply involved in the Belgian community. We believe in supporting local initiatives and contributing to the local economy. By choosing us, you&#8217;re not just getting an AWS partner; you&#8217;re contributing to the broader community and fostering local business ecosystem growth.</p>
<p>&nbsp;</p>
<p>Choosing a local AWS partner like Cloudar offers a range of benefits that large global system integrators can&#8217;t match. From personalized service to local market expertise, our team is dedicated to providing the best possible AWS solutions tailored to your specific needs. If you&#8217;re looking for an AWS partner that values your business and is committed to your success, look no further. Contact us today to discuss how we can help your business thrive with AWS.</p>
<p>The post <a href="https://cloudar.be/awsblog/shop-local/">Shop Local</a> appeared first on <a href="https://cloudar.be">Cloudar</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>2023 in the AWS cloud: 5 trends to look out for</title>
		<link>https://cloudar.be/awsblog/2023-in-the-aws-cloud-5-trends-to-look-out-for/</link>
		
		<dc:creator><![CDATA[Tom De Blende]]></dc:creator>
		<pubDate>Tue, 17 Jan 2023 10:27:51 +0000</pubDate>
				<category><![CDATA[AWS Blog]]></category>
		<guid isPermaLink="false">https://cloudar.be/?p=20526</guid>

					<description><![CDATA[<p>This new year may be the most exciting one yet in the world of cloud computing and AWS. It marks the breakthrough of technologies and solutions that are going to take us to the next level of sustainable innovation faster than we could have imagined just a short time ago. Here’s a brief intro to [&#8230;]</p>
<p>The post <a href="https://cloudar.be/awsblog/2023-in-the-aws-cloud-5-trends-to-look-out-for/">2023 in the AWS cloud: 5 trends to look out for</a> appeared first on <a href="https://cloudar.be">Cloudar</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong>This new year may be the most exciting one yet in the world of cloud computing and AWS. It marks the breakthrough of technologies and solutions that are going to take us to the next level of sustainable innovation faster than we could have imagined just a short time ago. Here’s a brief intro to the dizzying developments of 2023:</strong></p>
<p><strong>#1 Hybrid cloud is the new normal</strong></p>
<p>Hybrid cloud approaches take advantage of the scale and security of public clouds while keeping data on-premise or supporting edge computing. In a hybrid cloud, applications run in a combination of different environments. As hybrid becomes a dominant approach, providers will offer more flexible options to fit each customer’s data storage and workload needs. AWS is helping to reinvent the hybrid cloud by extending its infrastructure and services to customers wherever they need it.</p>
<p>Rather than offering a clunky mish-mash of tools and environments, AWS extends the cloud to where customers’ on-premises applications reside. Cloud infrastructure and services are deployed wherever they are needed for a consistent cloud experience. To stay competitive, platforms like AWS are focusing on industry-specific cloud products offering features and functions focused on sectors like finance, healthcare and telecom. AWS Outposts is a set of fully managed solutions delivering AWS infrastructure and services to virtually any on-premises or edge location for a truly consistent hybrid experience!</p>
<p><strong>#2 Security is more essential than ever</strong></p>
<p>The cloud opens up tremendous possibilities to boost efficiency and convenience. It also exposes companies to new cybersecurity threats. Compliance is also an issue, as there is more and more legislative restriction around how companies store and use personal data. Trust is everything, and keeping customer data safe is essential to stay in business.</p>
<p>All this contributes to cybersecurity being a higher priority than ever for global business. For companies balancing security with rising costs, it is essential to find innovative ways to save costs while optimizing security. A prime moment for AI and predictive technology to step in and help identify potential threats. There’s no question that investing in security pays off, so expect cloud security to be a huge growth segment.</p>
<p><strong>#3</strong> <strong>The cloud drives sustainability </strong></p>
<p>Companies are relying on the cloud to help meet their sustainability goals by boosting efficiency while minimizing their environmental footprint. AWS designs sustainable and low-cost workloads that help brands reduce carbon emissions, energy consumption and waste. The impact is real, with AWS working to help Amazon achieve their goal of switching to 100% renewable energy.</p>
<p>Public cloud servers are much more efficient than traditional data centers due to highly utilized infrastructure. Moving software from hardware systems to the cloud also makes a major dent in energy consumption.  AWS can help customers lower their IT carbon footprint by a huge percentage, reducing emissions from consumed energy purchases. AWS is also pioneering water stewardship initiatives for a more efficient use of water resources. In times defined by accelerating climate change, there is no doubt that the environmental case for moving to the cloud is strong.</p>
<p><strong>#4 The low- and no- code revolution </strong></p>
<p>Low-code and no-code solutions are poised to make a major impact on the tech landscape. These tools and platforms allow anybody to build websites, applications and a wide range of digital solutions with little to no coding skills. They are even becoming available to create AI-powered applications. The timing couldn’t be better as it helps to compensate for the talent shortage of a booming IT sector and help accelerate digital transformation. Benefits include increased automation capabilities, faster turnaround, reduced error and greater accessibility. It’s safe to say that low- and no-code are going to be used for a majority of development in the near future.</p>
<p>The key is of course, the cloud, where users access these solutions as a service instead of having to own the computing infrastructure needed to run them. This is yet another area where the cloud is a major driver of innovation. AWS has been at the forefront of the low- and no-code revolution with Amazon Honeycode for building apps, AWS Amplify Studio for web-app development and no-code platform SageMaker Canvas for machine learning (ML). We’ll provide more details about the latest AWS announcements and innovations in low- and no-code in an upcoming blog!</p>
<p><strong>#5 AWS solutions</strong><strong> to </strong><strong>keep your eye on </strong></p>
<p>There were lots of other exciting developments announced at the end of 2022 at AWS re:Invent, giving us lots to look forward to in 2023. Here are just a few of them:</p>
<ul>
<li><strong>SimSpace Weaver:</strong> this new managed compute service simplifies the creation of huge spatial simulations with multiple data points without hardware restrictions.</li>
<li><strong>Application Composer:</strong> this tool is set to speed up the development process of serverless applications. It maintains deployment-ready infrastructure as code definitions and offers a browser-based visual canvas.</li>
<li><strong>Amazon Security Lake:</strong> this service automatically centralizes security data from all on-premises and cloud sources so analysts can aggregate, manage, and optimize huge volumes of data to respond to security threats.</li>
</ul>
<p>There’s lots more in store: keep an eye on our blog for more juicy AWS developments!</p>
<p><strong>AWS Managed Services Providers (MSPs) like Cloudar help you tap into the opportunities of AWS more efficiently and securely. Want to know how we can help you accelerate innovation? Get in touch! </strong></p>
<p>The post <a href="https://cloudar.be/awsblog/2023-in-the-aws-cloud-5-trends-to-look-out-for/">2023 in the AWS cloud: 5 trends to look out for</a> appeared first on <a href="https://cloudar.be">Cloudar</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Bumps in the road: 5 AWS cloud adoption pitfalls to watch out for</title>
		<link>https://cloudar.be/awsblog/bumps-in-the-road-5-aws-cloud-adoption-pitfalls-to-watch-out-for/</link>
		
		<dc:creator><![CDATA[Tom De Blende]]></dc:creator>
		<pubDate>Wed, 24 Aug 2022 13:34:55 +0000</pubDate>
				<category><![CDATA[AWS Blog]]></category>
		<guid isPermaLink="false">https://cloudar.be/?p=20387</guid>

					<description><![CDATA[<p>AWS cloud adoption offers a lot of promise, but there can be some bumps on the road as well. Knowing what to watch out for can help prevent mistakes that expose vulnerabilities and can cost you big. Here are some of the major cloud adoption pitfalls to keep in mind: #1 Downtime don’ts AWS is [&#8230;]</p>
<p>The post <a href="https://cloudar.be/awsblog/bumps-in-the-road-5-aws-cloud-adoption-pitfalls-to-watch-out-for/">Bumps in the road: 5 AWS cloud adoption pitfalls to watch out for</a> appeared first on <a href="https://cloudar.be">Cloudar</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong>AWS cloud adoption offers a lot of promise, but there can be some bumps on the road as well. Knowing what to watch out for can help prevent mistakes that expose vulnerabilities and can cost you big. Here are some of the major cloud adoption pitfalls to keep in mind:</strong></p>
<h2><strong>#1 Downtime don’ts</strong></h2>
<p>AWS is very secure, but network issues at data centers do happen. Luckily there are AWS Availability Zones to route workload across several data centers within an AWS region to reduce the risk of downtime. Distributing workloads across multiple servers can also balance workloads. Horizontal partitioning provides extra redundancy to each app stage. Redundant instances should be located in various availability zones to reduce inevitable downtime.</p>
<h2><strong>#2 Access uh-ohs </strong></h2>
<p>If we don’t restrict administrator access, we can end up giving data access to unintended parties. This is a prime opportunity for hackers to exploit valuable data and customer information. It’s important to take the right precautions before switching over to AWS. This includes verifying cloud management and security systems before transferring information. In addition to rigorously restricting physical access, securing passwords and access keys according to AWS best practices is crucial. AWS procedures regarding compromised data should be followed in the case of a breach.</p>
<h2><strong>#3 Certificate concerns</strong></h2>
<p>This big blunder is often overlooked. Certificates that expire without notice can cause major mayhem. To avoid inconvenient outages and other chaos, apply AWS Config monitoring to all AWS ACM-based certificates to alert people to expiring certificates in advance. Also enable automatic renewals for internal certificates. Limit the use of single certificates to decrease the impact of any outages. It’s all part of prioritizing certificate management before migrating to AWS, looking at how certificate will be tracked and renewed and who will issue them.</p>
<h2><strong>#4 Configuration chaos    </strong></h2>
<p>Misconfigurations are a major source of attacks. Data can end up being exposed if there isn’t enough authentication needed. Misconfiguring network functionality or providing system users with too much access can also be a vulnerability, as are exposed passwords and keys. Misconfigured APIs are also at the root of many breaches. This is where change management practices come in. It’s essential that this receives due attention, and that multiple people are charged with looking at what is configured and how to manage risk.</p>
<h2><strong>#5 High priced hiccups</strong></h2>
<p>While AWS delivers cost-effective infrastructure and services, it’s common for organizations to underestimate costs while evaluating services. AWS users don’t always keep track of their capacity utilization, which impacts the cost. They wind up underutilizing AWS services which they are billed for. Using AWS EC2 reserved instances reduces application computation expenses. Careful tracking of what resources are used avoids unnecessary costs. AWS Trusted Advisor can be used to keep track of AWS charges.</p>
<p><strong>AWS partners like Cloudar are there to help you leverage the power of the Cloud in the safest and most cost-effective way. </strong><a href="https://cloudar.be/"><strong>Reach out to us</strong></a><strong> to talk about how we can work together! </strong></p>
<p>The post <a href="https://cloudar.be/awsblog/bumps-in-the-road-5-aws-cloud-adoption-pitfalls-to-watch-out-for/">Bumps in the road: 5 AWS cloud adoption pitfalls to watch out for</a> appeared first on <a href="https://cloudar.be">Cloudar</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Seamless &#038; secure cloud migration: top things to consider</title>
		<link>https://cloudar.be/awsblog/seamless-secure-cloud-migration-top-things-to-consider/</link>
		
		<dc:creator><![CDATA[Tom De Blende]]></dc:creator>
		<pubDate>Tue, 31 May 2022 09:31:08 +0000</pubDate>
				<category><![CDATA[AWS Blog]]></category>
		<category><![CDATA[Migration]]></category>
		<category><![CDATA[Security & Compliance]]></category>
		<guid isPermaLink="false">https://cloudar.be/?p=20277</guid>

					<description><![CDATA[<p>There’s no question that the future is in the Cloud: it not only saves organizations money, but it gives them a more agile and flexible infrastructure. However, it’s always a mistake to underestimate the security concerns that go along with cloud migration. As the Cloud becomes more advanced, so do cybercriminals. Building security into the [&#8230;]</p>
<p>The post <a href="https://cloudar.be/awsblog/seamless-secure-cloud-migration-top-things-to-consider/">Seamless &#038; secure cloud migration: top things to consider</a> appeared first on <a href="https://cloudar.be">Cloudar</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong>There’s no question that the future is in the Cloud: it not only saves organizations money, but it gives them a more agile and flexible infrastructure. However, it’s always a mistake to underestimate the security concerns that go along with cloud migration. As the Cloud becomes more advanced, so do cybercriminals. Building security into the Cloud infrastructure is essential to sustainable growth. </strong></p>
<h2><b>Shared responsibility model </b></h2>
<p><span style="font-weight: 400;">Security and Compliance falls under the shared responsibility model between AWS and the customer. Under this model, AWS takes on some of the customer’s operational burden by operating, managing and controlling certain system components as well as the physical security of the facilities in which the service operates. Meanwhile the customer is responsible for the guest operating system, other associated application software as well as the configuration of the AWS provided security group firewall. This model helps share the load while providing flexibility and customer control. </span></p>
<p><span style="font-weight: 400;">Under the shared responsibility model, AWS is responsible for the security “of the cloud”, protecting the infrastructure including the hardware, software, databases, networking, and facilities that run AWS Cloud services. The customer is charged with security “in the cloud”, and their responsibility will be determined by the AWS Cloud services they select, which impacts the amount of configuration work they must perform. Their remit includes data protection, identity and access management (IAM), OS configuration, network security and encryption.</span></p>
<h2><b>Top security considerations </b></h2>
<p><span style="font-weight: 400;">Here are some of the top security challenges to keep in mind when migrating to the cloud:</span></p>
<ul>
<li><b>Regulatory and compliance requirements:</b><span style="font-weight: 400;"> The cloud environment must meet regulatory requirements and compliance requirements. AWS will have their regulatory requirements covered, but under the shared responsibility model the customer must ensure that they meet privacy requirements on their end, especially concerning sensitive information and access. They may also need specialized controls to meet certain industry requirements. </span></li>
<li><b>Visibility and monitoring:</b><span> Cloud environments like AWS are large and complex, and contain a wide array of settings to monitor. Security teams may struggle to understand what is going on in cloud environments, especially because cloud migrations imply dynamic change. Provisioning and decommissioning cloud assets rapidly and technical complexities can make security difficult to manage. Gaining visibility is key to identifying dark data and handling data privacy. It’s important to employ industry best practices for initial risk assessment, configuration and security, followed by careful monitoring. </span></li>
<li><b>Managing DevOps:</b><span> The DevOps team includes developers and infrastructure specialists who manage the DevOps pipeline: coding, building, validation and deployment. When migrating to the cloud, they are responsible for integrating security tools and addressing security issues. They also have to protect against threats when workloads and applications go live. </span></li>
<li><b>Governance standards:</b><span> Governance workflows and alignments need to become more agile in the Cloud, involving a wider variety of stakeholders. Establishing a set of security standards and baselines in collaboration with the governance team is key. A cloud governance committee can ensure cohesion across teams.</span></li>
<li><b>Protecting network traffic:</b><span> Just like traditional environments, cloud-based environments can be targets for malware, bots and data breaches. It is essential to control data privacy and protect against cyber threats while securely connecting the cloud to on-premises networks. Information security should be employed to maintain network security parameters. </span></li>
</ul>
<h2><b>The way forward </b></h2>
<p><span style="font-weight: 400;">While it’s important to always carefully account for security considerations, it should still be a no-brainer to go ahead and migrate to the cloud. After all, it’s the new normal for enterprise IT operations. Working with a consulting partner like Cloudar, companies can create a migration roadmap suited to their specific organization. This of course includes all the particulars of their industry and configuration needs. Not only will this make cloud migration more efficient and advantageous, it allows companies to benefit from </span><a href="https://cloudar.be/services-solutions/aws-architecture-design"><span style="font-weight: 400;">Cloud Best Practices</span></a><span style="font-weight: 400;"> including security. </span></p>
<p><b>As a Premier Consulting partner, Cloudar has a proven track record of migrating applications and infrastructure to the Cloud. Want to know more about how we execute secure migrations from start to finish? </b><a href="https://cloudar.be/services-solutions/aws-migration-expertise-guidance"><b>Reach out to us</b></a><b> today. </b></p>
<p>The post <a href="https://cloudar.be/awsblog/seamless-secure-cloud-migration-top-things-to-consider/">Seamless &#038; secure cloud migration: top things to consider</a> appeared first on <a href="https://cloudar.be">Cloudar</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
