{"id":1232,"date":"2019-05-01T20:15:35","date_gmt":"2019-05-01T20:15:35","guid":{"rendered":"https:\/\/live-infoblox-blog.pantheonsite.io\/?p=1232"},"modified":"2020-05-06T10:26:58","modified_gmt":"2020-05-06T17:26:58","slug":"infoblox-and-automation-of-cloud-services-real-world-examples","status":"publish","type":"post","link":"https:\/\/www.infoblox.com\/blog\/community\/infoblox-and-automation-of-cloud-services-real-world-examples\/","title":{"rendered":"Infoblox and Automation of Cloud Services- Real World Examples using Ansible\u00ae and Microsoft Azure\u00ae"},"content":{"rendered":"<h2>Introduction<\/h2>\n<p>Infoblox provides an easy to use interface that frequently makes an administrator\u2019s life easier for day to day operations.\u00a0 But what if you are looking to take things to the next level and automate tasks that you might be stuck doing manually?<\/p>\n<p>Many organizations are growing increasingly dependent on\u00a0 implementing steps and processes that power the automation that keeps day to day operations humming along.\u00a0 This procedure has even branched out into an entirely new field that is highly sought after in the industry- DevOps. \u00a0There has been a merger between the philosophies for software development and IT operations, hence the term \u201cDevOps\u201d.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-1233\" src=\"https:\/\/live-infoblox-blog.pantheonsite.io\/wp-content\/uploads\/iotblogmonday-2.jpg\" alt=\"Infoblox and Automation of Cloud Services- Real World Examples using Ansible\u00ae and Microsoft Azure\u00ae\" width=\"660\" height=\"454\" srcset=\"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/iotblogmonday-2.jpg 660w, https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/iotblogmonday-2-300x206.jpg 300w\" sizes=\"auto, (max-width: 660px) 100vw, 660px\" \/><\/p>\n<p>If you are wondering how you might benefit with Infoblox, you are not alone.\u00a0 Administrators know that many tasks are repetitive and that any miss-step can be difficult to keep track of, cause deployment failures or operational issues. \u00a0When getting started, it is important to identify things like frequent repetitive requests or tasks with high error rates (example: IP address assignments, DNS record creation, and cleanup of everything once a resource is no longer needed), \u00a0Infoblox has a robust API with an extensive library of information at hand to help you get started; however, \u00a0this still requires knowledge of scripting languages and can be quite complex to pick up when you are getting started.<\/p>\n<p>To fill this gap, orchestration platforms that provide greater ease of use, reliability and portability have quickly grown in popularity. Many Infoblox integrations have been developed for these orchestration platforms, such as Ansible, Terraform and others. \u00a0Ansible was the first orchestration platform with officially supported integrations for Infoblox.\u00a0 It is a great resource for NIOS administrators who are ready to take that first step towards automation or for experienced administrators who are looking for an alternative to custom developed scripts that is easier to maintain.<\/p>\n<h2>Getting Started<\/h2>\n<p>One challenge that administrators may face is just knowing where to begin. To make this as simple as possible, Ansible uses modules and plugins that contain all the logic necessary for a specific operation. These modules and plugins are used in\u00a0<em>plays<\/em>\u00a0to complete the specified operation and these are called through a\u00a0<em>playbook<\/em>. A playbook is essentially your script where you put everything together and can include other playbooks as well. With Ansible version 2.7, there are 13 modules and three plugins for Infoblox and a handy resource with details and basic examples for these can be found at\u00a0<a href=\"https:\/\/docs.ansible.com\/ansible\/latest\/scenario_guides\/guide_infoblox.html\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">https:\/\/docs.ansible.com\/ansible\/latest\/scenario_guides\/guide_infoblox.html<\/a>.<\/p>\n<h2>Overview<\/h2>\n<p>The examples that are available do a great job demonstrating how to use the Infoblox modules and plugins, but what about a real-world example that ties everything together? This was a question that I was asked recently.\u00a0 We were looking at deployments for Azure MySQL servers and virtual machines and using those plentiful individual play examples , we were able to combine all into a working playbook.\u00a0 The working playbook, with just a little input, collects all necessary information, creates the desired objects in Infoblox, and the VM or database in Azure.<\/p>\n<p><strong>While there are countless ways you can accomplish this, the basic structure we followed for deploying a VM included:<\/strong><\/p>\n<ol>\n<li>Set the parameters (\u2018facts\u2019) to be used in the playbook through variables.<\/li>\n<li>Create a public IP address in Azure.<\/li>\n<li>Get the next available IP address from Infoblox and store that as a\u00a0<em>fact<\/em>.<\/li>\n<li>Create a Host record in Infoblox using the stored IP address.<\/li>\n<li>Create a vNIC in Azure using the stored IP address.<\/li>\n<li>Deploy the VM using the previously created vNIC and public IP address.<\/li>\n<\/ol>\n<p><strong>For the MySQL server, the flow was a little simpler:<\/strong><\/p>\n<ol>\n<li>Create the MySQL server.<\/li>\n<li>Lookup the IP address for that MySQL server.<\/li>\n<li>Create the Host record in Infoblox for local resolvability.<\/li>\n<\/ol>\n<h2>Structure<\/h2>\n<p>Variables are the key to tying together different plays in your playbook.\u00a0 They can be set directly in the playbook, through a separate file, or as an option in your command line. \u00a0Using variables also provides you with maximum flexibility and ease of use.\u00a0 So much so, that a single playbook can be easily customized to fit changing needs, such as changing a name or resource. \u00a0When using variables, static values can be set directly in the playbook, while others that are expected to change, such as unique deployment names , might be easier to set in the command line.<\/p>\n<p><strong>Here is a simple example for how this looks at the command line:<\/strong><\/p>\n<p>ansible-playbook create_vm.yaml &#8211;extra-vars &#8220;resource_group_name=resource-group1 vm_name=vm1\u201d<\/p>\n<p><strong>And the following is what you will see in the playbook:<\/strong><\/p>\n<p>vars:<\/p>\n<p>resource_group: &#8220;{{ resource_group_name }}&#8221;<\/p>\n<p>name: &#8220;{{ vm_name }}&#8221;<\/p>\n<p>When it comes to building your playbook, you can combine plays in a single playbook or categorize them into their own playbooks and then include these in your main playbook to help keep things tidy. Variables are an important piece of the puzzle because these will be used throughout your playbook. \u00a0For example, the vm_name variable can be used to create a virtual machine in Azure, and to create a matching DNS record in Infoblox. \u00a0Building your playbook to use variables as a single source of values, as your playbook is executed, is key to making sure that nothing is missed and that names are applied consistently.<\/p>\n<p><strong>For example, here is a play that creates a VM:<\/strong><\/p>\n<p>&#8211; name: Create VM<\/p>\n<p>azure_rm_virtualmachine:<\/p>\n<p>resource_group: &#8220;{{ resource_group_name }}&#8221;<\/p>\n<p>name: &#8220;{{ vm_name }}&#8221;<\/p>\n<p>vm_size: Standard_DS1_v2<\/p>\n<p>admin_username: azureuser<\/p>\n<p>admin_password: password<\/p>\n<p>ssh_password_enabled: true<\/p>\n<p>network_interfaces: &#8220;{{ vnic_name }}&#8221;<\/p>\n<p>image:<\/p>\n<p>offer: CentOS<\/p>\n<p>publisher: OpenLogic<\/p>\n<p>sku: &#8216;7.5&#8217;<\/p>\n<p>version: latest<\/p>\n<p>state: &#8220;{{ state }}&#8221;<\/p>\n<p><strong>And here is a play that creates a Host record in Infoblox:<\/strong><\/p>\n<p>&#8211; name: create host record<\/p>\n<p>nios_host_record:<\/p>\n<p>name: &#8220;{{ vm_name }}.{{ zone }}&#8221;<\/p>\n<p>view: default<\/p>\n<p>ipv4addrs:<\/p>\n<p>&#8211; ipv4addr: &#8220;{{ ipaddr }}&#8221;<\/p>\n<p>ttl: 3600<\/p>\n<p>extattrs:<\/p>\n<p>Site: Test Site<\/p>\n<p>comment: Created with Ansible<\/p>\n<p>state: &#8220;{{ state }}&#8221;<\/p>\n<p>provider: &#8220;{{ nios_provider }}&#8221;<\/p>\n<p>register: output_host_record<\/p>\n<p>By combining these into the same playbook, the variables are defined one time and reused throughout.<\/p>\n<p>To see the structure used for this playbook and get a better idea on exactly how they work, be sure to check out the sample playbook attached here. With simple updates to the state for each object that was created, you can easily remove these once done.<\/p>\n<h2>Conclusion<\/h2>\n<p>By putting processes in place to automate common tasks and leveraging an orchestration platform like Ansible, you can see benefits such as:<\/p>\n<ul>\n<li>Reduced time to deployment<\/li>\n<li>Prevent errors<\/li>\n<li>Simplified processes<\/li>\n<li>Ease of maintenance<\/li>\n<li>Increased accessibility by allowing updates through other groups in your organization<\/li>\n<\/ul>\n<p>While not always an easy transition, implementing automation, of at least common or error prone tasks, can be a game changer for many organizations.\u00a0 It can also help increase accessibility to services that may be a challenge for a busy and overworked staff to keep up with.<\/p>\n<p>Ansible is a registered trademark of Ansible, Inc. in the United States and other countries.<\/p>\n<p>Azure is a registered trademark of Microsoft Corporation.<br \/>\n<img decoding=\"async\" title=\"images.icon_attachment.title\" src=\"\/wp-content\/uploads\/icon_attachment.png\" alt=\"images.icon_attachment.alt\" aria-label=\"Attachment\" \/> <a class=\"lia-link-navigation attachment-link\" href=\"\/wp-content\/uploads\/linux-vm-complete.txt\">linux-vm-complete.txt \u200f3 KB<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Infoblox provides an easy to use interface that frequently makes an administrator\u2019s life easier for day to day operations.\u00a0 But what if you are looking to take things to the next level and automate tasks that you might be stuck doing manually? Many organizations are growing increasingly dependent on\u00a0 implementing steps and processes that [&hellip;]<\/p>\n","protected":false},"author":281,"featured_media":1233,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","footnotes":""},"categories":[3],"tags":[81,16,80,82,15],"class_list":{"0":"post-1232","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-community","8":"tag-ansible","9":"tag-infoblox","10":"tag-linux","11":"tag-microsoft-azure","12":"tag-security","13":"entry"},"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Infoblox and Automation of Cloud Services- Real World Examples using Ansible\u00ae and Microsoft Azure\u00ae<\/title>\n<meta name=\"description\" content=\"Infoblox provides an easy to use interface that frequently makes an administrator\u2019s life easier for day to day operations. But what if you are looking to take things to the next level and automate tasks that you might be stuck doing manually?\" \/>\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.infoblox.com\/blog\/community\/infoblox-and-automation-of-cloud-services-real-world-examples\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Infoblox and Automation of Cloud Services- Real World Examples using Ansible\u00ae and Microsoft Azure\u00ae\" \/>\n<meta property=\"og:description\" content=\"Infoblox provides an easy to use interface that frequently makes an administrator\u2019s life easier for day to day operations. But what if you are looking to take things to the next level and automate tasks that you might be stuck doing manually?\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.infoblox.com\/blog\/community\/infoblox-and-automation-of-cloud-services-real-world-examples\/\" \/>\n<meta property=\"og:site_name\" content=\"Infoblox Blog\" \/>\n<meta property=\"article:published_time\" content=\"2019-05-01T20:15:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-05-06T17:26:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/iotblogmonday-2.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"660\" \/>\n\t<meta property=\"og:image:height\" content=\"454\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Tony Tiscareno\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Tony Tiscareno\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/infoblox-and-automation-of-cloud-services-real-world-examples\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/infoblox-and-automation-of-cloud-services-real-world-examples\\\/\"},\"author\":{\"name\":\"Tony Tiscareno\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#\\\/schema\\\/person\\\/d55c93af7d9b0c559f876b0f3c9a934e\"},\"headline\":\"Infoblox and Automation of Cloud Services- Real World Examples using Ansible\u00ae and Microsoft Azure\u00ae\",\"datePublished\":\"2019-05-01T20:15:35+00:00\",\"dateModified\":\"2020-05-06T17:26:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/infoblox-and-automation-of-cloud-services-real-world-examples\\\/\"},\"wordCount\":1175,\"publisher\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/infoblox-and-automation-of-cloud-services-real-world-examples\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/wp-content\\\/uploads\\\/iotblogmonday-2.jpg\",\"keywords\":[\"Ansible\",\"Infoblox\",\"Linux\",\"Microsoft Azure\",\"Security\"],\"articleSection\":[\"Community\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/infoblox-and-automation-of-cloud-services-real-world-examples\\\/\",\"url\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/infoblox-and-automation-of-cloud-services-real-world-examples\\\/\",\"name\":\"Infoblox and Automation of Cloud Services- Real World Examples using Ansible\u00ae and Microsoft Azure\u00ae\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/infoblox-and-automation-of-cloud-services-real-world-examples\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/infoblox-and-automation-of-cloud-services-real-world-examples\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/wp-content\\\/uploads\\\/iotblogmonday-2.jpg\",\"datePublished\":\"2019-05-01T20:15:35+00:00\",\"dateModified\":\"2020-05-06T17:26:58+00:00\",\"description\":\"Infoblox provides an easy to use interface that frequently makes an administrator\u2019s life easier for day to day operations. But what if you are looking to take things to the next level and automate tasks that you might be stuck doing manually?\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/infoblox-and-automation-of-cloud-services-real-world-examples\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/infoblox-and-automation-of-cloud-services-real-world-examples\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/infoblox-and-automation-of-cloud-services-real-world-examples\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/wp-content\\\/uploads\\\/iotblogmonday-2.jpg\",\"contentUrl\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/wp-content\\\/uploads\\\/iotblogmonday-2.jpg\",\"width\":660,\"height\":454,\"caption\":\"Infoblox and Automation of Cloud Services- Real World Examples using Ansible\u00ae and Microsoft Azure\u00ae\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/infoblox-and-automation-of-cloud-services-real-world-examples\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Community\",\"item\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/category\\\/community\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Infoblox and Automation of Cloud Services- Real World Examples using Ansible\u00ae and Microsoft Azure\u00ae\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/\",\"name\":\"infoblox.com\\\/blog\\\/\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#organization\",\"name\":\"Infoblox\",\"url\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/wp-content\\\/uploads\\\/infoblox-logo-2.svg\",\"contentUrl\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/wp-content\\\/uploads\\\/infoblox-logo-2.svg\",\"width\":137,\"height\":30,\"caption\":\"Infoblox\"},\"image\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#\\\/schema\\\/person\\\/d55c93af7d9b0c559f876b0f3c9a934e\",\"name\":\"Tony Tiscareno\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e5728b57be9779b0f953def16463b43017b683debc2aeb9c96a20745bcffbc3a?s=96&d=blank&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e5728b57be9779b0f953def16463b43017b683debc2aeb9c96a20745bcffbc3a?s=96&d=blank&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e5728b57be9779b0f953def16463b43017b683debc2aeb9c96a20745bcffbc3a?s=96&d=blank&r=g\",\"caption\":\"Tony Tiscareno\"},\"url\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/author\\\/tony-tiscareno\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Infoblox and Automation of Cloud Services- Real World Examples using Ansible\u00ae and Microsoft Azure\u00ae","description":"Infoblox provides an easy to use interface that frequently makes an administrator\u2019s life easier for day to day operations. But what if you are looking to take things to the next level and automate tasks that you might be stuck doing manually?","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.infoblox.com\/blog\/community\/infoblox-and-automation-of-cloud-services-real-world-examples\/","og_locale":"en_US","og_type":"article","og_title":"Infoblox and Automation of Cloud Services- Real World Examples using Ansible\u00ae and Microsoft Azure\u00ae","og_description":"Infoblox provides an easy to use interface that frequently makes an administrator\u2019s life easier for day to day operations. But what if you are looking to take things to the next level and automate tasks that you might be stuck doing manually?","og_url":"https:\/\/www.infoblox.com\/blog\/community\/infoblox-and-automation-of-cloud-services-real-world-examples\/","og_site_name":"Infoblox Blog","article_published_time":"2019-05-01T20:15:35+00:00","article_modified_time":"2020-05-06T17:26:58+00:00","og_image":[{"width":660,"height":454,"url":"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/iotblogmonday-2.jpg","type":"image\/jpeg"}],"author":"Tony Tiscareno","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Tony Tiscareno","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.infoblox.com\/blog\/community\/infoblox-and-automation-of-cloud-services-real-world-examples\/#article","isPartOf":{"@id":"https:\/\/www.infoblox.com\/blog\/community\/infoblox-and-automation-of-cloud-services-real-world-examples\/"},"author":{"name":"Tony Tiscareno","@id":"https:\/\/www.infoblox.com\/blog\/#\/schema\/person\/d55c93af7d9b0c559f876b0f3c9a934e"},"headline":"Infoblox and Automation of Cloud Services- Real World Examples using Ansible\u00ae and Microsoft Azure\u00ae","datePublished":"2019-05-01T20:15:35+00:00","dateModified":"2020-05-06T17:26:58+00:00","mainEntityOfPage":{"@id":"https:\/\/www.infoblox.com\/blog\/community\/infoblox-and-automation-of-cloud-services-real-world-examples\/"},"wordCount":1175,"publisher":{"@id":"https:\/\/www.infoblox.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.infoblox.com\/blog\/community\/infoblox-and-automation-of-cloud-services-real-world-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/iotblogmonday-2.jpg","keywords":["Ansible","Infoblox","Linux","Microsoft Azure","Security"],"articleSection":["Community"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.infoblox.com\/blog\/community\/infoblox-and-automation-of-cloud-services-real-world-examples\/","url":"https:\/\/www.infoblox.com\/blog\/community\/infoblox-and-automation-of-cloud-services-real-world-examples\/","name":"Infoblox and Automation of Cloud Services- Real World Examples using Ansible\u00ae and Microsoft Azure\u00ae","isPartOf":{"@id":"https:\/\/www.infoblox.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.infoblox.com\/blog\/community\/infoblox-and-automation-of-cloud-services-real-world-examples\/#primaryimage"},"image":{"@id":"https:\/\/www.infoblox.com\/blog\/community\/infoblox-and-automation-of-cloud-services-real-world-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/iotblogmonday-2.jpg","datePublished":"2019-05-01T20:15:35+00:00","dateModified":"2020-05-06T17:26:58+00:00","description":"Infoblox provides an easy to use interface that frequently makes an administrator\u2019s life easier for day to day operations. But what if you are looking to take things to the next level and automate tasks that you might be stuck doing manually?","breadcrumb":{"@id":"https:\/\/www.infoblox.com\/blog\/community\/infoblox-and-automation-of-cloud-services-real-world-examples\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.infoblox.com\/blog\/community\/infoblox-and-automation-of-cloud-services-real-world-examples\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.infoblox.com\/blog\/community\/infoblox-and-automation-of-cloud-services-real-world-examples\/#primaryimage","url":"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/iotblogmonday-2.jpg","contentUrl":"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/iotblogmonday-2.jpg","width":660,"height":454,"caption":"Infoblox and Automation of Cloud Services- Real World Examples using Ansible\u00ae and Microsoft Azure\u00ae"},{"@type":"BreadcrumbList","@id":"https:\/\/www.infoblox.com\/blog\/community\/infoblox-and-automation-of-cloud-services-real-world-examples\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.infoblox.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Community","item":"https:\/\/www.infoblox.com\/blog\/category\/community\/"},{"@type":"ListItem","position":3,"name":"Infoblox and Automation of Cloud Services- Real World Examples using Ansible\u00ae and Microsoft Azure\u00ae"}]},{"@type":"WebSite","@id":"https:\/\/www.infoblox.com\/blog\/#website","url":"https:\/\/www.infoblox.com\/blog\/","name":"infoblox.com\/blog\/","description":"","publisher":{"@id":"https:\/\/www.infoblox.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.infoblox.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.infoblox.com\/blog\/#organization","name":"Infoblox","url":"https:\/\/www.infoblox.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.infoblox.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/infoblox-logo-2.svg","contentUrl":"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/infoblox-logo-2.svg","width":137,"height":30,"caption":"Infoblox"},"image":{"@id":"https:\/\/www.infoblox.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.infoblox.com\/blog\/#\/schema\/person\/d55c93af7d9b0c559f876b0f3c9a934e","name":"Tony Tiscareno","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/e5728b57be9779b0f953def16463b43017b683debc2aeb9c96a20745bcffbc3a?s=96&d=blank&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/e5728b57be9779b0f953def16463b43017b683debc2aeb9c96a20745bcffbc3a?s=96&d=blank&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e5728b57be9779b0f953def16463b43017b683debc2aeb9c96a20745bcffbc3a?s=96&d=blank&r=g","caption":"Tony Tiscareno"},"url":"https:\/\/www.infoblox.com\/blog\/author\/tony-tiscareno\/"}]}},"_links":{"self":[{"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/posts\/1232","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/users\/281"}],"replies":[{"embeddable":true,"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/comments?post=1232"}],"version-history":[{"count":5,"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/posts\/1232\/revisions"}],"predecessor-version":[{"id":1239,"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/posts\/1232\/revisions\/1239"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/media\/1233"}],"wp:attachment":[{"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/media?parent=1232"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/categories?post=1232"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/tags?post=1232"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}