{"id":58635,"date":"2026-08-26T08:02:02","date_gmt":"2026-08-25T22:02:02","guid":{"rendered":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/08\/26\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\/"},"modified":"2026-08-26T08:03:16","modified_gmt":"2026-08-25T22:03:16","slug":"from-ai-proof-of-concept-to-production-using-foundry-and-a2a","status":"publish","type":"post","link":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/08\/26\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\/","title":{"rendered":"From AI Proof of Concept to Production Using Foundry and A2A"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">In this blog post <strong>From AI Proof of Concept to Production Using Foundry and A2A<\/strong> we will explain how to turn a promising AI agent demonstration into a secure, measurable and supportable business service.<\/p>\n\n\n\n<!--more-->\n\n\n\n<p class=\"wp-block-paragraph\">Many organisations can build an agent that answers questions or completes a simple task. The difficulty starts when that agent needs access to company data, must work with other agents, and is expected to operate reliably every day.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The gap is rarely caused by the AI model. It is usually caused by unclear ownership, weak access controls, missing monitoring and no agreed process for releasing changes. An operating model closes that gap.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Foundry and A2A do in plain English<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Microsoft Foundry is the Azure-based platform used to build, deploy, evaluate and monitor AI applications and agents. Foundry Agent Service provides a managed environment for running agents, connecting them to approved tools and controlling how they access business systems.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A2A, short for Agent-to-Agent, is an open communication protocol. It gives agents built by different teams, frameworks or vendors a standard way to discover one another, exchange messages and coordinate work.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Think of Foundry as the controlled workplace in which an agent operates. A2A is the agreed language agents use when they need help from another specialist agent.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This is different from simply connecting an AI model to more data. A production agent has an identity, permissions, operating costs, logs, service expectations and the ability to take actions. It should therefore be managed more like a business application than a chatbot experiment.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The operating model has five practical layers<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. Start with a measurable business service<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">A proof of concept often starts with a broad goal such as \u201chelp employees find information\u201d. That is too vague for production because nobody can define whether the agent is working well.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Define a narrow service with a clear outcome. For example, an internal support agent could classify Microsoft 365 requests, locate an approved answer and prepare a service ticket when the issue requires human attention.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Business owner:<\/strong> The person accountable for the result.<\/li>\n<li><strong>Users:<\/strong> The employees or customers allowed to access the service.<\/li>\n<li><strong>Success measure:<\/strong> Time saved, requests resolved or errors reduced.<\/li>\n<li><strong>Risk limit:<\/strong> Actions the agent is never allowed to complete independently.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">If the team cannot agree on these four points, the agent is not ready to move beyond experimentation.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. Separate development, testing and production<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">A common mistake is continuing to improve the original demonstration until it quietly becomes a production system. Test accounts, broad permissions and sample data then become part of a live business process.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Create separate Foundry environments for development, testing and production. Prompts, tools, model settings, Agent Cards and access policies should be version controlled and released through an approval process.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Each release should pass a defined set of evaluations. These tests should measure whether the agent completes the task, follows instructions, handles unsafe requests and avoids exposing confidential information.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Foundry tracing can record inputs, outputs, tool calls, delays, retries and usage costs through Azure Monitor and Application Insights. In plain English, this gives the support team a timeline of what the agent did and helps explain why a request failed.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3. Give every agent a narrow identity<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">An agent should never inherit the full access of its developer or service administrator. It needs its own managed identity, which is a secure Azure identity that can access only specifically approved resources.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For example, an accounts-payable agent may need to read invoices and create a draft record. It should not be able to approve a payment, change supplier bank details or browse unrelated employee files.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Use Microsoft Entra ID for authentication, role-based access control for permissions, private network connections where required, and a secrets manager rather than storing passwords in code. These controls also support Essential Eight, the Australian government\u2019s cybersecurity framework that many organisations use to measure security maturity.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Australian organisations should also review whether agent prompts, traces and stored conversations contain personal information. Privacy checks must cover the complete workflow, not only the model.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For a deeper infrastructure view, see our guide to designing secure AI agent infrastructure on Azure.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">4. Treat A2A as a controlled business contract<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">A2A allows one agent to discover and call another without needing to understand its internal code. Each agent publishes an Agent Card, which is a machine-readable description of its skills, location and authentication requirements.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A request can then become a tracked task. The receiving agent can return messages, progress updates or an artifact, meaning the completed output such as a report, structured record or document.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n &amp;quot;agent&amp;quot;: &amp;quot;supplier-risk-review&amp;quot;,\n &amp;quot;approved_callers&amp;quot;: [&amp;quot;procurement-agent&amp;quot;],\n &amp;quot;allowed_actions&amp;quot;: [&amp;quot;assess_supplier&amp;quot;, &amp;quot;draft_report&amp;quot;],\n &amp;quot;human_approval_required&amp;quot;: [&amp;quot;reject_supplier&amp;quot;],\n &amp;quot;maximum_task_cost&amp;quot;: 2.00,\n &amp;quot;data_classification&amp;quot;: &amp;quot;confidential&amp;quot;\n}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This example is not just a technical configuration. It describes the operating boundary: who can call the agent, what it may do, when a person must approve the result and how much a task may cost.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">At the time of writing, native A2A connections and incoming A2A endpoints in Foundry Agent Service remain preview capabilities without a production service-level agreement. Organisations should isolate them behind a controlled integration layer, use feature flags and maintain a fallback path rather than making a preview connector the single point of failure.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Our guide to building interoperable AI agents with A2A and Agent Framework covers the implementation pattern in more detail.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">5. Operate the agent as an ongoing service<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Production approval is not the end of the project. Models change, business data changes, connected systems change and users find unexpected ways to interact with the agent.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A practical operations dashboard should track task success, incorrect answers, blocked actions, response time, human escalations and cost per completed task. Monthly business reviews should compare those measures with the original target.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">High-impact actions should include human approval. If an agent can issue a refund, disable an account, modify a customer record or send an external communication, a person should review the action before execution.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Long-running workflows also need checkpoints. These save progress so a task can resume after a system failure or approval delay instead of starting again and repeating actions.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">A realistic 200-person business scenario<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Consider a 200-person professional services company receiving 500 internal IT and operations requests each month. Staff spend an average of 12 minutes classifying each request, locating information and routing it to the right team.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The company introduces a coordinator agent in Foundry. It identifies the request type and uses A2A to call separate agents for Microsoft 365 support, device management and policy questions. Each specialist has different permissions and cannot access systems outside its role.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If the service safely handles 60 per cent of those requests, the business recovers around 60 staff hours per month. More importantly, sensitive actions still require approval, every agent interaction is logged, and costs can be linked to completed work rather than raw AI usage.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">A sensible path from pilot to production<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Select one repeatable workflow<\/strong> with enough volume to produce a measurable return.<\/li>\n<li><strong>Document the agent boundary<\/strong>, including data access, tools, prohibited actions and approval points.<\/li>\n<li><strong>Build a representative test set<\/strong> containing normal, difficult and unsafe requests.<\/li>\n<li><strong>Deploy through controlled environments<\/strong> rather than modifying the live agent directly.<\/li>\n<li><strong>Release to a small user group<\/strong> and compare results with the existing process.<\/li>\n<li><strong>Monitor quality, risk and cost<\/strong> before expanding access or adding more agents.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">If you are still building the technical foundation, start with building Microsoft Foundry agents with Microsoft Agent Framework. For organisations moving from general AI chat toward controlled business workflows, see from Copilot Chat to governed AI agents with Microsoft Foundry.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The real goal is controlled business value<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The best production agent is not the one with the most tools or the most advanced model. It is the one that completes a valuable task consistently, stays inside clear security boundaries and can be supported when something goes wrong.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">CloudProInc combines more than 20 years of enterprise IT experience with hands-on expertise across Azure, Microsoft Foundry, OpenAI, Claude, Microsoft Defender and Wiz. As a Melbourne-based Microsoft Partner and Wiz Security Integrator, we help organisations design operating models that fit their existing security, compliance and support practices.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If your AI proof of concept is attracting attention but nobody is comfortable putting it into production, we are happy to review the architecture, controls and operating model with you \u2014 no strings attached.<\/p>\n\n\n","protected":false},"excerpt":{"rendered":"<p>A practical operating model for moving Azure AI agents from promising demos into secure, measurable production services using Microsoft Foundry and the A2A protocol.<\/p>\n","protected":false},"author":1,"featured_media":58637,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_yoast_wpseo_opengraph-title":"From AI Proof of Concept to Production Using Foundry and A2A","_yoast_wpseo_opengraph-description":"Move an AI proof of concept into a secure, measurable production service with clear ownership, access controls, testing, monitoring and agent operations.","_yoast_wpseo_twitter-title":"From AI Proof of Concept to Production Using Foundry and A2A","_yoast_wpseo_twitter-description":"Move an AI proof of concept into a secure, measurable production service with clear ownership, access controls, testing, monitoring and agent operations.","_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[80,121,13,115],"tags":[],"class_list":["post-58635","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ai-agents","category-ai-governance-risk-management","category-blog","category-microsoft-ai-foundry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v28.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>From AI Proof of Concept to Production Using Foundry and A2A<\/title>\n<meta name=\"description\" content=\"Move an AI proof of concept into a secure, measurable production service with clear ownership, access controls, testing, monitoring and agent operations.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/08\/26\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"From AI Proof of Concept to Production Using Foundry and A2A\" \/>\n<meta property=\"og:description\" content=\"Move an AI proof of concept into a secure, measurable production service with clear ownership, access controls, testing, monitoring and agent operations.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/08\/26\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\/\" \/>\n<meta property=\"og:site_name\" content=\"CPI Consulting\" \/>\n<meta property=\"article:published_time\" content=\"2026-08-25T22:02:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-25T22:03:16+00:00\" \/>\n<meta name=\"author\" content=\"CPI Staff\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"From AI Proof of Concept to Production Using Foundry and A2A\" \/>\n<meta name=\"twitter:description\" content=\"Move an AI proof of concept into a secure, measurable production service with clear ownership, access controls, testing, monitoring and agent operations.\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"CPI Staff\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/08\\\/26\\\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/08\\\/26\\\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\\\/\"},\"author\":{\"name\":\"CPI Staff\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#\\\/schema\\\/person\\\/192eeeb0ce91062126ce3822ae88fe6e\"},\"headline\":\"From AI Proof of Concept to Production Using Foundry and A2A\",\"datePublished\":\"2026-08-25T22:02:02+00:00\",\"dateModified\":\"2026-08-25T22:03:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/08\\\/26\\\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\\\/\"},\"wordCount\":1376,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/08\\\/26\\\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\\\/#primaryimage\"},\"thumbnailUrl\":\"\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a.png\",\"articleSection\":[\"AI Agents\",\"AI Governance &amp; Risk Management\",\"Blog\",\"Microsoft AI Foundry\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/08\\\/26\\\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/08\\\/26\\\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\\\/\",\"url\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/08\\\/26\\\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\\\/\",\"name\":\"From AI Proof of Concept to Production Using Foundry and A2A\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/08\\\/26\\\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/08\\\/26\\\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\\\/#primaryimage\"},\"thumbnailUrl\":\"\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a.png\",\"datePublished\":\"2026-08-25T22:02:02+00:00\",\"dateModified\":\"2026-08-25T22:03:16+00:00\",\"description\":\"Move an AI proof of concept into a secure, measurable production service with clear ownership, access controls, testing, monitoring and agent operations.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/08\\\/26\\\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/08\\\/26\\\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/08\\\/26\\\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\\\/#primaryimage\",\"url\":\"\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a.png\",\"contentUrl\":\"\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a.png\",\"width\":1536,\"height\":1024},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/08\\\/26\\\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"From AI Proof of Concept to Production Using Foundry and A2A\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#website\",\"url\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/\",\"name\":\"Cloud Pro Inc - CPI Consulting Pty Ltd\",\"description\":\"Cloud, AI &amp; Cybersecurity Consulting | Melbourne\",\"publisher\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#organization\",\"name\":\"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd\",\"url\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/favfinalfile.png\",\"contentUrl\":\"\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/favfinalfile.png\",\"width\":500,\"height\":500,\"caption\":\"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd\"},\"image\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#\\\/schema\\\/person\\\/192eeeb0ce91062126ce3822ae88fe6e\",\"name\":\"CPI Staff\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g\",\"caption\":\"CPI Staff\"},\"sameAs\":[\"http:\\\/\\\/www.cloudproinc.com.au\"],\"url\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/author\\\/cpiadmin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"From AI Proof of Concept to Production Using Foundry and A2A","description":"Move an AI proof of concept into a secure, measurable production service with clear ownership, access controls, testing, monitoring and agent operations.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/08\/26\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\/","og_locale":"en_US","og_type":"article","og_title":"From AI Proof of Concept to Production Using Foundry and A2A","og_description":"Move an AI proof of concept into a secure, measurable production service with clear ownership, access controls, testing, monitoring and agent operations.","og_url":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/08\/26\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\/","og_site_name":"CPI Consulting","article_published_time":"2026-08-25T22:02:02+00:00","article_modified_time":"2026-08-25T22:03:16+00:00","author":"CPI Staff","twitter_card":"summary_large_image","twitter_title":"From AI Proof of Concept to Production Using Foundry and A2A","twitter_description":"Move an AI proof of concept into a secure, measurable production service with clear ownership, access controls, testing, monitoring and agent operations.","twitter_misc":{"Written by":"CPI Staff","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/08\/26\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\/#article","isPartOf":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/08\/26\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\/"},"author":{"name":"CPI Staff","@id":"https:\/\/cloudproinc.azurewebsites.net\/#\/schema\/person\/192eeeb0ce91062126ce3822ae88fe6e"},"headline":"From AI Proof of Concept to Production Using Foundry and A2A","datePublished":"2026-08-25T22:02:02+00:00","dateModified":"2026-08-25T22:03:16+00:00","mainEntityOfPage":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/08\/26\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\/"},"wordCount":1376,"commentCount":0,"publisher":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/#organization"},"image":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/08\/26\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2026\/08\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a.png","articleSection":["AI Agents","AI Governance &amp; Risk Management","Blog","Microsoft AI Foundry"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.cloudproinc.com.au\/index.php\/2026\/08\/26\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/08\/26\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\/","url":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/08\/26\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\/","name":"From AI Proof of Concept to Production Using Foundry and A2A","isPartOf":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/08\/26\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\/#primaryimage"},"image":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/08\/26\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2026\/08\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a.png","datePublished":"2026-08-25T22:02:02+00:00","dateModified":"2026-08-25T22:03:16+00:00","description":"Move an AI proof of concept into a secure, measurable production service with clear ownership, access controls, testing, monitoring and agent operations.","breadcrumb":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/08\/26\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.cloudproinc.com.au\/index.php\/2026\/08\/26\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/08\/26\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\/#primaryimage","url":"\/wp-content\/uploads\/2026\/08\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a.png","contentUrl":"\/wp-content\/uploads\/2026\/08\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a.png","width":1536,"height":1024},{"@type":"BreadcrumbList","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/08\/26\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.cloudproinc.com.au\/"},{"@type":"ListItem","position":2,"name":"From AI Proof of Concept to Production Using Foundry and A2A"}]},{"@type":"WebSite","@id":"https:\/\/cloudproinc.azurewebsites.net\/#website","url":"https:\/\/cloudproinc.azurewebsites.net\/","name":"Cloud Pro Inc - CPI Consulting Pty Ltd","description":"Cloud, AI &amp; Cybersecurity Consulting | Melbourne","publisher":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cloudproinc.azurewebsites.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/cloudproinc.azurewebsites.net\/#organization","name":"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd","url":"https:\/\/cloudproinc.azurewebsites.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudproinc.azurewebsites.net\/#\/schema\/logo\/image\/","url":"\/wp-content\/uploads\/2022\/01\/favfinalfile.png","contentUrl":"\/wp-content\/uploads\/2022\/01\/favfinalfile.png","width":500,"height":500,"caption":"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd"},"image":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/cloudproinc.azurewebsites.net\/#\/schema\/person\/192eeeb0ce91062126ce3822ae88fe6e","name":"CPI Staff","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g","caption":"CPI Staff"},"sameAs":["http:\/\/www.cloudproinc.com.au"],"url":"https:\/\/www.cloudproinc.com.au\/index.php\/author\/cpiadmin\/"}]}},"jetpack-related-posts":[{"id":57787,"url":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/07\/connecting-microsoft-foundry-agents-to-external-a2a-endpoints\/","url_meta":{"origin":58635,"position":0},"title":"Connecting Microsoft Foundry Agents to External A2A Endpoints","author":"CPI Staff","date":"July 7, 2026","format":false,"excerpt":"A practical guide for tech leaders on connecting Microsoft Foundry agents to external A2A endpoints safely, without creating cost, security, or governance surprises.","rel":"","context":"In &quot;Blog&quot;","block_context":{"text":"Blog","link":"https:\/\/www.cloudproinc.com.au\/index.php\/category\/blog\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2026\/07\/connecting-microsoft-foundry-agents-to-external-a2a-endpoints.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2026\/07\/connecting-microsoft-foundry-agents-to-external-a2a-endpoints.png 1x, \/wp-content\/uploads\/2026\/07\/connecting-microsoft-foundry-agents-to-external-a2a-endpoints.png 1.5x, \/wp-content\/uploads\/2026\/07\/connecting-microsoft-foundry-agents-to-external-a2a-endpoints.png 2x, \/wp-content\/uploads\/2026\/07\/connecting-microsoft-foundry-agents-to-external-a2a-endpoints.png 3x, \/wp-content\/uploads\/2026\/07\/connecting-microsoft-foundry-agents-to-external-a2a-endpoints.png 4x"},"classes":[]},{"id":57836,"url":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/12\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\/","url_meta":{"origin":58635,"position":1},"title":"Implementing Secure A2A Auth in Microsoft Foundry Agent Service","author":"CPI Staff","date":"July 12, 2026","format":false,"excerpt":"AI agents are starting to call other agents. Here is how to implement A2A authentication in Microsoft Foundry Agent Service without creating a security blind spot.","rel":"","context":"In &quot;Blog&quot;","block_context":{"text":"Blog","link":"https:\/\/www.cloudproinc.com.au\/index.php\/category\/blog\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2026\/07\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2026\/07\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service.png 1x, \/wp-content\/uploads\/2026\/07\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service.png 1.5x, \/wp-content\/uploads\/2026\/07\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service.png 2x, \/wp-content\/uploads\/2026\/07\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service.png 3x, \/wp-content\/uploads\/2026\/07\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service.png 4x"},"classes":[]},{"id":57949,"url":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/21\/monitoring-and-troubleshooting-a2a-agent-communication-in-azure\/","url_meta":{"origin":58635,"position":2},"title":"Monitoring and Troubleshooting A2A Agent Communication in Azure","author":"CPI Staff","date":"July 21, 2026","format":false,"excerpt":"Learn how to trace A2A agent conversations in Azure, diagnose failures faster, control costs and give business leaders confidence that multi-agent workflows are operating safely.","rel":"","context":"In &quot;AI Agents&quot;","block_context":{"text":"AI Agents","link":"https:\/\/www.cloudproinc.com.au\/index.php\/category\/ai-agents\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2026\/07\/monitoring-and-troubleshooting-a2a-agent-communication-in-azure.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2026\/07\/monitoring-and-troubleshooting-a2a-agent-communication-in-azure.png 1x, \/wp-content\/uploads\/2026\/07\/monitoring-and-troubleshooting-a2a-agent-communication-in-azure.png 1.5x, \/wp-content\/uploads\/2026\/07\/monitoring-and-troubleshooting-a2a-agent-communication-in-azure.png 2x, \/wp-content\/uploads\/2026\/07\/monitoring-and-troubleshooting-a2a-agent-communication-in-azure.png 3x, \/wp-content\/uploads\/2026\/07\/monitoring-and-troubleshooting-a2a-agent-communication-in-azure.png 4x"},"classes":[]},{"id":57297,"url":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/03\/17\/why-microsoft-ai-foundry-should-be-on-every-cios-vendor-evaluation-list-for-2026\/","url_meta":{"origin":58635,"position":3},"title":"Why Microsoft AI Foundry Should Be on Every CIO&#8217;s Vendor Evaluation List for 2026","author":"CPI Staff","date":"March 17, 2026","format":false,"excerpt":"Most mid-market Australian organisations are past the AI proof-of-concept stage. The models work. The board is asking for the next phase. And suddenly the questions nobody planned for are piling up. Where do the models run? Who approves new deployments? How does the organisation trace what an agent did when\u2026","rel":"","context":"In &quot;AI&quot;","block_context":{"text":"AI","link":"https:\/\/www.cloudproinc.com.au\/index.php\/category\/ai\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2026\/03\/why-microsoft-ai-foundry-every-cios-vendor-evaluation-2026-cover.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2026\/03\/why-microsoft-ai-foundry-every-cios-vendor-evaluation-2026-cover.png 1x, \/wp-content\/uploads\/2026\/03\/why-microsoft-ai-foundry-every-cios-vendor-evaluation-2026-cover.png 1.5x, \/wp-content\/uploads\/2026\/03\/why-microsoft-ai-foundry-every-cios-vendor-evaluation-2026-cover.png 2x, \/wp-content\/uploads\/2026\/03\/why-microsoft-ai-foundry-every-cios-vendor-evaluation-2026-cover.png 3x, \/wp-content\/uploads\/2026\/03\/why-microsoft-ai-foundry-every-cios-vendor-evaluation-2026-cover.png 4x"},"classes":[]},{"id":57288,"url":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/03\/22\/what-microsoft-ai-foundry-means-for-australian-organisations-designing-enterprise-ai-platforms\/","url_meta":{"origin":58635,"position":4},"title":"What Microsoft AI Foundry Means for Australian Organisations Designing Enterprise AI Platforms","author":"CPI Staff","date":"March 22, 2026","format":false,"excerpt":"Most Australian organisations that started building AI capabilities in the last two years are hitting the same wall. The proof of concept worked. The board approved the next phase. And now IT teams are drowning in questions nobody planned for. Where do the models run? Who approves new deployments? How\u2026","rel":"","context":"In &quot;AI&quot;","block_context":{"text":"AI","link":"https:\/\/www.cloudproinc.com.au\/index.php\/category\/ai\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2026\/03\/microsoft-ai-foundry-australian-enterprise-ai-platforms-cover.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2026\/03\/microsoft-ai-foundry-australian-enterprise-ai-platforms-cover.png 1x, \/wp-content\/uploads\/2026\/03\/microsoft-ai-foundry-australian-enterprise-ai-platforms-cover.png 1.5x, \/wp-content\/uploads\/2026\/03\/microsoft-ai-foundry-australian-enterprise-ai-platforms-cover.png 2x, \/wp-content\/uploads\/2026\/03\/microsoft-ai-foundry-australian-enterprise-ai-platforms-cover.png 3x, \/wp-content\/uploads\/2026\/03\/microsoft-ai-foundry-australian-enterprise-ai-platforms-cover.png 4x"},"classes":[]},{"id":57803,"url":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/08\/securing-a2a-agent-communication-using-microsoft-entra-id\/","url_meta":{"origin":58635,"position":5},"title":"Securing A2A Agent Communication Using Microsoft Entra ID","author":"CPI Staff","date":"July 8, 2026","format":false,"excerpt":"AI agents are starting to talk to each other. Here\u2019s how Microsoft Entra ID helps keep those conversations trusted, controlled, and audit-ready.","rel":"","context":"In &quot;Blog&quot;","block_context":{"text":"Blog","link":"https:\/\/www.cloudproinc.com.au\/index.php\/category\/blog\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2026\/07\/securing-a2a-agent-communication-using-microsoft-entra-id.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2026\/07\/securing-a2a-agent-communication-using-microsoft-entra-id.png 1x, \/wp-content\/uploads\/2026\/07\/securing-a2a-agent-communication-using-microsoft-entra-id.png 1.5x, \/wp-content\/uploads\/2026\/07\/securing-a2a-agent-communication-using-microsoft-entra-id.png 2x, \/wp-content\/uploads\/2026\/07\/securing-a2a-agent-communication-using-microsoft-entra-id.png 3x, \/wp-content\/uploads\/2026\/07\/securing-a2a-agent-communication-using-microsoft-entra-id.png 4x"},"classes":[]}],"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"\/wp-content\/uploads\/2026\/08\/from-ai-proof-of-concept-to-production-using-foundry-and-a2a.png","_links":{"self":[{"href":"https:\/\/www.cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/posts\/58635","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/comments?post=58635"}],"version-history":[{"count":1,"href":"https:\/\/www.cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/posts\/58635\/revisions"}],"predecessor-version":[{"id":58636,"href":"https:\/\/www.cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/posts\/58635\/revisions\/58636"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/media\/58637"}],"wp:attachment":[{"href":"https:\/\/www.cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/media?parent=58635"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/categories?post=58635"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/tags?post=58635"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}