Cyber Back to School – Improving Your Azure Governance with Bicep + GitHub Copilot

Greetings to all Cloud community and Cloud Marathoner friends!

Did you know that the Cyber Back to School 2025 is started on October first?
It is community organized event that you don’t want to miss out.

Cyber Back to School event

Cyber Back to School is an annual community event featuring IT professionals from across the world. This event was started in 2024 by Microsoft MVP and MCT Community Lead, Dwayne Natwick. Microsoft community Leader, Microsoft MCT, blogger, and public speaker, Derek Smith, joined the team as co-organizer in 2025.
In 2025, Cloud Marathoner and Microsoft MVP and MCT, Elkhan Yusubov began assisting with social media and promotion of the event. Community members submit sessions, either videos or blog articles, to provide viewers with actionable knowledge. The event takes place every October, from 01 October to 31 October.

This year I submitted two sessions and look forward to sharing the first one on this blog below.

What is covered in my session?

Strong governance is the foundation of a secure, scalable, and cost-effective cloud environment. In this hands-on session, we’ll explore together how to use Bicep — Azure’s new infrastructure as code language —alongside GitHub Copilot to streamline and strengthen your Azure governance strategy.

You will learn the following in this session:

  • ✅ Azure Governance: policies, role-based access control (RBAC), resource locks, and naming conventions
  • ✅ Resource Governance rules with Bicep code
  • ✅ GitHub Copilot to the rescue of reduce errors and follow best practices in IaC
  • ✅ Real-world examples
  • ✅ Automating governance at scale
  • ✅ Tips for integrating governance into your CI/CD workflows

This session is designed for early-career cloud engineers and architects looking to build confidence in managing Azure environments with automation and AI-assisted development.

Azure Governance

As a cloud engineer or working professional stepping into the world of Microsoft Azure, one of the most important concepts to grasp early is Azure Governance. Think of it as the set of rules and practices that help organizations manage their cloud resources effectively, securely, and in a cost-efficient way. Let’s break down some of the key components of Azure Governance:

🛡️Azure Policies – Enforcing Rules

Azure Policies are like the rulebook for your cloud environment. They help ensure that resources are created and managed in a way that aligns with your organization’s standards. For example: You can create a policy that only allows resources to be deployed in specific regions (e.g., only in West Europe or East US), or that requires all storage accounts to have encryption enabled.

Why it matters?
It helps prevent misconfigurations, ensures compliance, and keeps your environment secure and cost-effective.

👥 Role-Based Access Control (RBAC) – Managing Who Can Do What

RBAC is Azure’s way of controlling who has access to what resources and what actions they can perform. For example: You can give a developer access to manage virtual machines in a resource group but not allow them to delete the resource group itself.

Why it matters?
It follows the principle of least privilege, ensuring users only have the permissions they need—nothing more, nothing less.

🔒 Resource Locks – Preventing Accidental Deletion or Changes

Resource Locks are like putting a “Do Not Touch” sign on critical resources. We have following types of locks:

  • ReadOnly – Users can read the resource but can’t make changes.
  • CanNotDelete – Users can modify the resource but can’t delete it.

As a use case example: You can lock a production database to prevent accidental deletion during maintenance.

Why it matters?
It adds an extra layer of protection for important resources and prevents accidental changes in your important resources.

🏷️ Naming Conventions – Keeping Things Organized

Naming conventions are standardized ways of naming your resources so they’re easy to identify and manage. For example: A virtual machine name like vm-prod-weu-app01 could tell you the following additional information:

  • It’s a VM
  • Used in production
  • Located in West Europe
  • It’s an app server

Why it matters?
It improves clarity, helps with automation, and makes managing large environments much easier.

🧩 Bringing It All Together

Imagine you’re building a cloud environment for a company. With Azure Governance you can achieve the following mission:

  • Define rules (Policies)
  • Control access (RBAC)
  • Protect critical resources (Locks)
  • Stay organized (Naming Conventions)

Together, these tools ensure your cloud environment is secure, compliant, and manageable—even as it grows. Mastering Azure Governance early will set you up for success as you build scalable, secure, and well-managed cloud solutions.

Resource governance with Bicep Code

Resource governance with Azure Bicep empowers organizations to manage cloud resources consistently and securely through declarative infrastructure-as-code. By defining policies, role assignments, and resource configurations in Bicep templates, teams can enforce compliance, reduce configuration drift, and automate deployments across environments. This approach enhances visibility and control, ensuring that resources adhere to organizational standards from the moment they’re provisioned.

Additionally, Bicep simplifies governance by integrating seamlessly with Azure Policy and management groups, enabling scalable enforcement of rules across subscriptions. Its modular structure promotes reuse and collaboration, allowing teams to build standardized templates for tagging, cost management, and security controls. Ultimately, Bicep streamlines governance workflows, reduces manual overhead, and fosters a culture of accountability and best practices in cloud operations.

GitHub Copilot to the rescue

When working with Azure governance at scale, writing Bicep templates for policies, RBAC assignments, and resource locks can quickly become repetitive and time-consuming. This is where GitHub Copilot shines. By leveraging AI-powered code suggestions, Copilot can help you generate Bicep snippets for common governance tasks, such as defining policy assignments or creating role definitions, with minimal effort. Instead of starting from scratch, you can use Copilot to accelerate development and reduce human error.

Copilot doesn’t just autocomplete code—it understands context. For example, if you’re writing a Bicep module for resource naming conventions or enforcing tags, Copilot can infer patterns from your existing code and suggest consistent, reusable structures. This capability is especially useful when implementing governance across multiple environments, where consistency is critical. By integrating Copilot into your workflow, you can focus on higher-level governance strategy while letting AI handle the boilerplate.

For example, start a new governance.bicep file and type a guiding comment (e.g., // Enforce required tag 'costCenter' with a fixed value at the RG scope). Copilot will suggest a snippet similar to the one below; accept with Tab and adjust as needed (swap scopes, parameterize values, or plug in your built‑in/custom policy definition ID). This is usually faster and less error-prone than writing from scratch—and easy to refactor into a reusable module later.


@description('Assign a policy to require a costCenter tag at the resource group scope')
param tagName string = 'costCenter'
param tagValue string = 'FIN-001'

// Replace with the built-in or custom policy definition ID that requires a tag and its value.
@description('Policy definition ID for "Require a tag and its value"')
param policyDefinitionId string = '/providers/Microsoft.Authorization/policyDefinitions/<RequireTagAndItsValue_ID>'

resource tagPolicyAssignment 'Microsoft.Authorization/policyAssignments@2021-06-01' = {
  name: 'enforce-costcenter-tag'
  scope: resourceGroup()
  properties: {
    displayName: 'Enforce cost center tag'
    policyDefinitionId: policyDefinitionId
    enforcementMode: 'Default'
    parameters: {
      tagName:  { value: tagName }
      tagValue: { value: tagValue }
    }
  }
}


Why It Matters?
Governance is not optional—it’s the backbone of a secure and compliant cloud environment. Poorly implemented governance can lead to security gaps, compliance violations, and operational inefficiencies. GitHub Copilot helps bridge the gap between governance intent and execution by reducing complexity and speeding up template development. In short, it empowers teams to implement governance as code effectively, ensuring that policies, RBAC, and resource controls are applied consistently across your Azure estate.

Automating governance

Manual governance processes often lead to inconsistencies, delays, and human error—especially in large-scale Azure environments. Automating governance ensures that policies, RBAC assignments, resource locks, and naming conventions are applied uniformly across all subscriptions and resource groups. By leveraging Infrastructure as Code (IaC) with Bicep, you can codify governance rules and deploy them through automated pipelines, eliminating the need for repetitive manual configurations.

Automation also enables continuous compliance. Instead of relying on periodic audits or manual checks, you can integrate governance enforcement into your CI/CD workflows. For example, every time a new resource group or workload is deployed, your pipeline can validate naming conventions, apply required tags, and assign policies automatically. This proactive approach reduces risk and ensures that governance is not an afterthought but an integral part of your deployment lifecycle.

Why It Matters?
In today’s cloud-first world, speed and compliance must coexist. Without automation, governance becomes a bottleneck, slowing down innovation and increasing the likelihood of misconfigurations. Automating governance ensures that security, compliance, and operational standards are consistently enforced at scale—without sacrificing agility. It transforms governance from a reactive process into a proactive, embedded practice, giving organizations confidence that every deployment aligns with their standards from day one.

integrating governance into your CI/CD

Embedding governance into your CI/CD pipelines ensures that compliance and security are not left to chance. Instead of applying policies and RBAC assignments after deployment, you can make them part of the deployment process itself. By integrating Bicep templates into your pipeline, every resource provisioned through CI/CD automatically adheres to your governance standards—whether it’s naming conventions, resource locks, or mandatory tags.

This integration typically involves adding governance steps to your pipeline stages. For example, in GitHub Actions or Azure DevOps, you can include tasks that deploy governance templates before or alongside application resources. You can also implement validation checks using tools like az bicep build or arm-ttk to ensure templates meet compliance requirements before they are merged. This approach creates a “shift-left” model for governance, catching issues early and reducing costly remediation later.

Why It Matters?
Governance embedded in CI/CD transforms compliance from a manual, reactive process into an automated, proactive safeguard. It ensures that every deployment aligns with organizational standards without slowing down delivery. By integrating governance into pipelines, you reduce risk, improve consistency, and enable teams to innovate confidently, knowing that security and compliance are enforced by design, not by afterthought.

Demo and references

To help you get hands-on with governance-as-code, here’s a curated set of Microsoft Learn references covering key areas:

Policy Assignments via Bicep
Microsoft’s QuickStart demonstrates how to assign a built‑in policy (e.g., audit unmanaged disks) using a Bicep file. It includes a complete example policy-assignment.bicep to deploy against a resource group.

Role Assignments via Bicep
This guide shows how to create an RBAC role assignment (e.g., Virtual Machine Contributor) by defining the necessary principal and scope in Bicep.

Resource Locks with Bicep
The Microsoft Learn page documents how to apply locks such as CanNotDelete or ReadOnly using the Bicep type Microsoft.Authorization/locks@2020‑05‑01.

Naming Conventions and Patterns
Microsoft advises using Bicep functions like uniqueString() and guid() under the “Name generation pattern” to ensure consistent, deterministic naming.

CI/CD Integration with Azure Pipelines
A QuickStart showcases how to integrate Bicep deployments into Azure Pipelines using tasks and .bicepparam files.

In Summary

Azure governance is the foundation for building secure, compliant, and well-managed cloud environments. By leveraging Bicep for Infrastructure as Code and integrating GitHub Copilot into your workflow, you can simplify governance implementation, reduce manual effort, and ensure consistency across deployments. When combined with automation and CI/CD integration, governance becomes proactive rather than reactive—enabling organizations to innovate confidently while maintaining control and compliance at scale.

Ready to Take Action?
Start implementing governance as code today! Explore Bicep to codify your Azure policies, RBAC, and resource controls, and let GitHub Copilot accelerate your development with intelligent code suggestions. Integrate these practices into your CI/CD pipelines to make governance seamless and automated.

The sooner you embed governance into your workflows, the faster you’ll achieve secure, compliant, and scalable cloud environments. Try it now and transform governance from a challenge into a competitive advantage!

How Did I Renew the Microsoft Power BI Data Analyst Certification?

Hello Cloud Marathoners !

As a Cloud Marathoner, the journey never stops!
Recently, I renewed my Microsoft Certified: Power BI Data Analyst Associate certification, and I want to share the experience so you can prepare for yours.

Why Renewal Is Important

Microsoft certifications are valid for one year, and renewal ensures your skills stay aligned with the latest Power BI updates. The renewal process is free, online, and proctored—perfect for professionals who want flexibility without scheduling hassles.

The Renewal Process and eligibility

Here’s what I learned from the official Microsoft learn site.

  • Eligibility: You can renew within six months before expiration.
  • Assessment: A short, open-book online assessment focused on recent Power BI updates.

  • Skills Measured:
    • Clean, transform, and load data in Power BI
    • Configure semantic models
    • Use DAX time intelligence and modify filter context
    • Optimize models for performance
    • Create visual calculations and enhance report designs
    • Manage workspaces and secure data access in Power BI Service

  • Attempts: Unlimited until expiration, with a 24-hour wait between retakes.
  • Validity: Passing extends your certification by one year.

Preparation Tips

Microsoft provides a curated learning collection (about 11 hours) to help you prepare. I recommend:

  • Reviewing DAX fundamentals and performance optimization.
  • Practicing workspace management and security settings.
  • Exploring visual design enhancements for better user experience.

My Experience and Exam results

The renewal was straightforward with the following simple, and known steps:

  • Logged into Microsoft Learn, clicked Renew.
  • Took the assessment.
  • Passed on the first attempt! 🎉

The best part? No stress, just focused learning and validation of current skills.

Key Takeaways

  • Start early—don’t wait until the last week.
  • Use Microsoft’s official learning paths for prep.
  • Treat renewal as an opportunity to refresh your knowledge and stay ahead.

Are you planning to renew your Power BI Data Analyst Certification soon?

Drop your thoughts in the comments or share your experience with the Cloud Marathoner community!

Speaking at Microsoft Azure Community User Group – Exploring Azure Bicep Innovation and Microsoft Graph extension

Welcome, Cloud Marathoners!

What an energizing experience to speak at the Microsoft Azure Community User Group! This week, our session was all about exploring Azure Bicep innovation and the powerful new Microsoft Graph extension—with a focus on hands-on learning, community growth, and practical cloud skills.

The Cloud Marathoner Community

We kicked off by sharing the vision behind the Cloud Marathoner community—a movement to help both beginners and seasoned pros upskill, inspire each other, and support underrepresented groups in IT. The goal? To motivate everyone to keep running their cloud learning journey and celebrate each milestone together.

Azure Bicep: The latest advancement in Infrastructure as Code

Azure Bicep is a domain-specific language designed to simplify resource management in Azure. Unlike traditional ARM templates, Bicep offers:

  • Easy-to-read syntax
  • Day-zero support
  • Deep integration with Azure
  • Code reusability through modules
  • Production-ready deployments

We explored how Bicep abstracts over ARM templates, making infrastructure as code more accessible and enjoyable for everyone.

Modularization: Reusability and Teamwork

One of the session’s core themes was modularization—breaking down your infrastructure code into reusable modules. This approach brings:

  • Type safety and IntelliSense
  • Standardization across teams
  • Easier maintenance and deployment
  • Integration with Azure Bicep Registry and Azure Verified Modules

We walked through demos showing how to build and deploy modular Bicep files, highlighting the benefits for both individuals and organizations.

Microsoft Graph Extension: Expanding Bicep’s Power

The latest innovation is the Microsoft Graph extension for Azure Bicep. This extension lets you:

  • Reference and deploy resources beyond native ARM scope (like Microsoft Graph resources)
  • Combine Azure and non-Azure resources in a single Bicep file
  • Simplify complex deployment scenarios with unified declarative modules

We demonstrated how to use the extension to create security groups and managed identities in Microsoft Entra ID, showing the practical steps and best practices for real-world deployments.


Hands-On Demos and Best Practices

Throughout the session, we switched between slides and live demos in Visual Studio Code, showing:

  • How to visualize Bicep deployments with the Bicep Visualizer
  • Quick deployment options via right-click in VS Code
  • Scripted deployments using Azure CLI and PowerShell
  • Troubleshooting common issues (like managed identity delays)
  • How to redeploy for idempotent results

We also discussed leveraging GitHub Copilot for code generation and the importance of baseline knowledge to get the most out of AI tools.

Community Resources and session recording

To keep your marathon going, check out these resources:

Join the Movement!

The Cloud Marathoner community is all about sharing, growing, and supporting each other. Whether you’re just starting out or looking to master the latest Azure innovations, there’s a place for you.

Connect with us, share your feedback, and let’s keep running toward cloud excellence — together!

Who are the Microsoft MVPs 🌟 and how to become one?

Becoming a Microsoft MVP isn’t about chasing a title—it’s about embracing a mission.

As the community lead of Cloud Marathoner, I’ve had the privilege of walking alongside cloud engineers, architects, and passionate tech enthusiasts who are building, sharing, and growing together. Many of them ask me: “How do I become a Microsoft MVP?”

The answer is both simple and profound: do what you love and give back.

🧭 What Is a Microsoft MVP?

The Microsoft Most Valuable Professional (MVP) award recognizes exceptional community leaders who share their expertise, uplift others, and contribute meaningfully to the tech ecosystem. It’s not a certification—it’s a celebration of consistent, authentic impact.

According to the official Microsoft MVP site, the MVPs are selected for their contributions across blogs, talks, open-source projects, user groups, and more. They are the spark that keeps the community thriving.

🛤️ My Journey: From Passion to Purpose

When I started Cloud Marathoner, it was just a blog. But it quickly became a movement—a space where cloud professionals could learn, share, and grow together. I didn’t set out to become an MVP. I set out to help others to succeed in their unique Cloud journey. And that’s the secret.

As Betsy Weber, Microsoft Program Manager beautifully put it:

“Don’t follow the crowd—find your gap and fill it with passion, creativity, and community.”

🎉 Celebrating Microsoft AWARD

This year, I’m incredibly honored to celebrate my 4th consecutive Microsoft MVP award recognition from Microsoft. It’s a meaningful milestone that reflects the many community events, sessions, and contributions I’ve wholeheartedly delivered over the last year. My focus remains strong on Infrastructure as Code and Cloud Optimization, while I continue to explore and share innovations in AI and GitHub Copilot to empower and uplift our community of cloud engineers, architects, and tech enthusiasts.

🧩 Find Your Gap, Fill It with Passion

You don’t need to be the loudest voice. You need to be the most authentic one.

  • 🎨 Like MVP Luise Freese, who turned technical content into sketchnotes that even Satya Nadella noticed.
  • 🌍 Like Sharon Weaver, who kept her user group alive through the pandemic.
  • 🎤 Like Lee Englestone, who built a Visual Studio tips site that led to talks and a book.

Each of them found a unique way to give back. So can you.

🧱 actionable Steps to Becoming a Microsoft MVP

  1. Be an Expert
    Master your craft. Stay current. Share what you learn.
  2. Be a Leader
    Start a user group. Mentor others. Create inclusive spaces.
  3. Be an Advocate
    Provide feedback to Microsoft. Champion tools that help others.
  4. Be Consistent
    MVP is a marathon, not a sprint. Keep showing up.
  5. Be Visible
    Blog, speak, stream, post—whatever suits your style. Just share.

💬 Final Thoughts: Your Spark ✨ Matters

You don’t need permission to start. You don’t need a title to lead. You just need to care enough to contribute.

Whether you’re streaming your learning journey, launching a user group, or writing your first blog post—you’re already on the path.

So go ahead. Share your knowledge. Be helpful. Look for gaps to fill.
The community is waiting for your spark. ✨

Building a Data Mesh Architecture for Dynamics 365 Sales with Rodrigue

Greetings my dear Cloud Marathoners !!!

Last week, we had an interesting session with Rodrigue Yengo on how you could transform data management in Dynamics 365 Sales through Data Mesh architecture!

This session was different as Cloud Lunch and Learn welcomed our #CloudMarathoner friend Martin Dimovski into studio to drive session as we did the discussions together by asking questions to our speaker from France.

In this session, Rodrigue will walk us through:
🔹 How to decentralize data ownership
🔹 Strategies to improve data accessibility across teams
🔹 Seamless integration of new Business Units (BUs)
🔹 Maintaining governance and data quality at scale
🔹 Data Fabric vs Dynamics 365 for Sales?

what we covered as well?

💡 A practical use case will bring these concepts to life and show how Data Mesh principles can be effectively applied in a Dynamics 365 environment.

In addition, we sparked discussion around Data Fabric and how it is related or different from the Dynamics 365. Which tool is for what and how to navigate those questions.

When and Where

📅 Date: June 4th, 2025
🕒 Time: 5 PM UTC
📍 Recorded session URL

check the recording

Whether you’re a data architect, Dynamics 365 professional, or just passionate about modern data strategies, this session is for you!

Hack the Cloud: Attackers Love Blind Spots, Break Their Hearts!

Hello Cloud Marathoner friends,

Last week, we had a very interesting session focused on cybersecurity.

Our guest speaker Brian Contos, shared his expertise on the following critical cybersecurity topics:

✅ Real-life stories from the trenches, drawn from years of cloud-based incident response.
✅ Exploration of various hacks to illustrate how breaches occur, what happens following a breach, and why organizations struggle to detect and respond.
✅ Mitigation strategies to proactively prepare for a breach, discover malicious activity, and respond effectively.

Malicious actors are counting on your passivity, your blind spots, and your inability to detect and respond to attacks in the cloud. Break their hearts!

Are you ready to learn more about hacking 🔐 ⛔ the cloud and how to prevent it ⁉️ 🤔
Tune in to hear and learn from real-world stories.

Real-World Examples

  • Crypto mining on hacked security cameras in a casino.
  • $15 million wire fraud via compromised Office 365 and fake domains.
  • MongoDB ransomware where attackers lied about stealing data.
  • Robot hack demo showing how easy it is to control industrial devices with no authentication.

When and Where

📅 Date: May 7th, 2025
🕒 Time: 5 PM UTC
📍 Recorded session URL

Don’t miss out on this amazing hacking session.
Let’s make the cloud a safer place together!

How to enhance your own AI services using Semantic Kernel

Greeting my dear #CloudMarathoner friends!!!

Last week, we had a great discussion with our guest speaker – Microsoft MVP, Håkan Silfvernagel. Our topic was Azure Ai services using the Semantic Kernel with simple, yet insightful demos.



Don’t miss an opportunity to learn about 🚀 #AzureAI services using Semantic Kernel today at the Cloud Lunch and Learn session 🤩


What WILL YOU learn?

By checking this session, you will learn how to build your own CoPilot experience using the Semantic Kernel released as an open-source project. Our speaker has demonstrated how you can use skills, memories, connectors, and plugins in order to enhance the experience for your users.

WHEN and WHERE?

🗓️ Wed, April 24 2025 @ 18:00 UTC
📍 Recorded session URL
🔗 Registration URL 👉 https://lnkd.in/eSNFkPGx

Check out the following session and let us know your feedback

Exciting Session Recap: Hacking Azure AI with André Melancia!

Greetings to all #CloudMarathoner community members!

Last week, we had an exhilarating session with a Microsoft Certified Trainer (MCT), André M.D. Melancia – who shared his invaluable insights on Hacking Azure AI.

meet our Speaker

Our dynamic speaker, André, is a seasoned Developer, DBA, and security consultant with a wealth of hands-on experience. He is dedicated to helping organizations thrive. This demo-driven session was a must-attend for developers, data engineers, data scientists, and security consultants eager to learn about the security aspects of using Generative AI in their daily work.

Highlights from the Session

André captivated us with his demonstrations of exploits and security recommendations for various tools, including ChatGPT. He provided practical advice on avoiding mistakes that could expose your projects or organizations to cyber threats.

Demos on Azure AI Foundry

Our speaker incorporated interesting demos on Azure AI Foundry services, including an explanation of different AI models, Chat playground with examples on how to create filters and block specific types of content.

AI Application Workflow Demos

Another interesting demo is on a typical AI services application that are used in application where an application is using Azure AI services to return responses. This demo screenshot below emphasis a need for protection and/or filtering before returning results back to the requester application – which an end-user or cybercriminal may exploit with your AI system data.

Watch the Recorded Session

If you missed the live session or want to revisit the insights shared, check out the full recording on our Cloud Lunch and Learn YouTube channel. Don’t miss this opportunity to enhance your knowledge and skills in Azure AI security!

Azure Spring Clean 2025 – sessions are accepted to present on Governance with Azure Bicep and AKS monitoring trends

Hello, hello my dear friends and community members!

This March month is going to be very busy, as I got notified that one of my solo sessions, and one joint session with Kasun – a Microsoft MVP and Docker captain – has been accepted, two weeks ago. And most importantly, I will be folding my sleeves to start preparations for the following sessions:

  • The Future of AKS Monitoring: Trends and tools you can’t ignore
  • Tips and tricks to automate resource governance with Azure Bicep

What to expect from a session – Future of AKS Monitoring?

In this session, we dive deep into the evolving landscape of Azure Kubernetes Service (AKS) monitoring — exploring the latest trends, essential tools, and best practices to future-proof your observability strategy.

What you’ll learn in this session:

✅ Current state of AKS monitoring: Azure Monitor, Log Analytics, Prometheus, and more.
✅ Must-have tools: Grafana, Azure Managed Prometheus,
✅ Best practices for designing scalable, high-availability monitoring solutions
✅ Live demo: Setting up Prometheus + Grafana on AKS and integration

What to expect from a Governance with Bicep session?

In this new session, you will learn how to simplify resource governance, ensure compliance, and easily maintain control over your Azure environment.

I have following key topics included in the session:
✅ Basics of Azure Policy and its core components
✅ Creating and managing policy definitions and assignments
✅ Leveraging built-in policies and custom policy creation
✅ Integrating Azure Bicep for efficient resource deployment and governance
✅ Real-world examples and use cases

Call to Action

Don’t miss these sessions during the March month, and as always, you are welcome to provide feedback or ask questions.

Reference post with links to the recorded session – The Future of AKS Monitoring: Trends and tools you can’t ignore.

Another reference post to a recorded session – Tips and tricks to automate resource governance with Azure Bicep.

Cloud Meets Blockchain: The Role of Cloud Platforms in Decentralized Infrastructure session with Samuel Arogbonl

Greetings to all #CloudMarathoner friends!

In the rapidly evolving world of technology, blockchain stands out as a revolutionary force reshaping industries across the globe. As cloud engineers and architects, understanding how to leverage the cloud for blockchain solutions is crucial for staying ahead in this dynamic landscape.


Last week, we had a session with a Blockchain researcher, DevOps and SRE professional – Samule. Our speaker is an experienced engineer with hands-on skills in operating blockchain nodes within cloud environments. This session is aiming to be a deep dive into the intersection of blockchain and cloud technology, offering valuable insights and practical strategies.

The Power of the Cloud in Blockchain

Blockchain technology, with its decentralized nature, demands robust infrastructure to ensure high availability, scalability, and security. The cloud emerges as a critical enabler, providing the necessary resources to support these requirements. Samuel will share his experiences and knowledge on how cloud platforms can effectively power decentralized systems, making them more resilient and efficient.

Real-World Challenges and Solutions

One of the highlights of Samuel’s session will be his exploration of real-world challenges faced when integrating blockchain with cloud environments. From managing the complexities of decentralization to ensuring seamless scalability, Samuel will discuss practical solutions that bridge the gap between centralization and decentralization. His insights will be invaluable for anyone looking to build and deploy blockchain solutions in the cloud.

Building the Next Generation of Web3 Applications

As we move towards a more decentralized web, often referred to as Web3, the role of cloud technology becomes even more significant. Samuel’s session will provide actionable strategies for cloud engineers and architects to design and implement the next generation of Web3 applications. By leveraging the cloud, we can create more robust, scalable, and secure blockchain solutions that drive innovation and transformation.

Feel free to check the recorded session with Samuel and gain the knowledge and tools needed to excel in the world of blockchain and cloud technology. Whether you’re a seasoned professional or just starting your journey, this session is sure to provide valuable insights and inspire you to push the boundaries of what’s possible with blockchain in the cloud.

Recorded Session

If you are intrigued to watch the entire session, then please visit the following YouTube link below on our Cloud Lunch and Learn channel.