{"id":2635,"date":"2016-07-13T07:00:47","date_gmt":"2016-07-13T07:00:47","guid":{"rendered":"https:\/\/live-infoblox-blog.pantheonsite.io\/?p=2635"},"modified":"2020-05-06T10:28:06","modified_gmt":"2020-05-06T17:28:06","slug":"infoblox-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup","status":"publish","type":"post","link":"https:\/\/www.infoblox.com\/blog\/community\/infoblox-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\/","title":{"rendered":"Infoblox with AWS Lambda  CloudFormation  and CloudTrail Part 2 &#8211; Cloud Platform Setup"},"content":{"rendered":"<p>In the previous blog post I presented an overview of the DNS and IPAM automation possible even when using only the native AWS provisioning tools such as the web console and CloudFormation. This next post in the series covers the setup and configuration of an Infoblox Cloud Platform Appliance in an AWS VPC to enable this.<\/p>\n<p>The Infoblox Cloud Platform Appliance (CP) was designed to allow cloud platform automation via the Infoblox API without having to backhaul all API traffic to the Grid Master appliance. This is done in two ways: by allowing Infoblox objects such as networks, views, zones, etc. to be delegated to remote CP appliances local to the cloud stacks being serviced, and by automatically proxying requests to the appropriate CP appliance or the Grid Master when they cannot be served locally. This is the key to enabling AWS Lambda to interface with Infoblox. AWS Lambda can only send network traffic inside selected VPCs. By placing an Infoblox CP appliance inside a VPC, Lambda can then interface with the CP appliance\u2019s local API enabling all of the functionality I\u2019ll cover in this series.<\/p>\n<p>This post assumes you already have an AWS VPC configured with at least one subnet. It also assumes connectivity between the VPC and an existing Infoblox Grid Master. The Grid Master can be in AWS or it can be on another platform. In this case my Grid Master is also in the AWS VPC. This is because there is one set of API calls (vDiscovery management) that I want to demonstrate that cannot be proxied via a CP appliance, they must go directly to the Grid Master, and Lambda is limited to communicating within its attached VPCs.<\/p>\n<p>I\u2019m not going to step through the installation process for an Infoblox appliance in Amazon EC2, the detailed steps are available in the vNIOS for AWS Installation Guide in the Tech Docs section of the Infoblox Support site.<\/p>\n<p>Start by deploying an Infoblox Cloud Platform appliance into your AWS VPC. In this example I am using the CP-2200 appliance.<\/p>\n<p><span class=\"lia-message-image-wrapper lia-message-image-actions-narrow lia-message-image-actions-below\"><img decoding=\"async\" class=\"lia-media-image\" tabindex=\"0\" title=\"Screen Shot 2016-06-24 at 11.04.51 AM.png\" src=\"https:\/\/cixhp49439.i.lithium.com\/t5\/image\/serverpage\/image-id\/668iCF0728D3EDAEEEF0\/image-size\/original?v=v2&amp;px=-1\" alt=\"Screen Shot 2016-06-24 at 11.04.51 AM.png\" border=\"0\" \/><i class=\"lia-fa lia-fa-search-plus lia-media-lightbox-trigger\" tabindex=\"0\" aria-label=\"Enlarge image\"><\/i><\/span><\/p>\n<p>Connect to the newly deployed appliance via SSH and set temporary or permanent licenses on the appliance and join it to your existing Grid. Start the Cloud API on the new Cloud Platform Appliance. Open the Grid -&gt; Grid Manager -&gt; Services tab. Click the Cloud-API service in the top navigation bar. Select the new CP appliance from the list then click Start in the Toolbar. The Cloud API service will start up on the CP member.<\/p>\n<p><span class=\"lia-message-image-wrapper lia-message-image-actions-narrow lia-message-image-actions-below\"><img decoding=\"async\" class=\"lia-media-image\" tabindex=\"0\" title=\"Screen Shot 2016-06-24 at 3.21.07 PM.png\" src=\"https:\/\/cixhp49439.i.lithium.com\/t5\/image\/serverpage\/image-id\/669iF8BB0B93945CD5EE\/image-size\/original?v=v2&amp;px=-1\" alt=\"Screen Shot 2016-06-24 at 3.21.07 PM.png\" border=\"0\" \/><i class=\"lia-fa lia-fa-search-plus lia-media-lightbox-trigger\" tabindex=\"0\" aria-label=\"Enlarge image\"><\/i><\/span><\/p>\n<p>Now you will need a user account to use for the API access to the Infoblox Grid. There is a default group called \u201ccloud-api-only\u201d that is configured to only have Cloud API access and nothing else (i.e. no GUI access). This group has no object permissions by default. You can configure object permissions for the group but for the sake of this example I will enable the Superusers role for this group. This removes the restriction against GUI login so don\u2019t do that in a production environment. Now add a user account and add it to the cloud-api-only group. I called this account \u201cclouduser.\u201d<\/p>\n<p>Let\u2019s test the new Cloud API user account by issuing a couple of REST API calls. I\u2019ll be using the 172.21.0.0\/24 subnet (already defined in AWS) and the lambda.test DNS zone for these examples. I\u2019ll create the DNS zone through the Cloud API, then create a vDiscovery job for my AWS account\/region to make sure all of the used addresses in the subnet are automatically merged into the IPAM database. There are a couple of things to note about these API calls. The DNS zone creation will be done against the CP appliance through the Cloud API. The Tenant ID, CMP Type, and Cloud API Owned extensible attributes indicate to NIOS that these are Cloud API calls. The vDiscovery job API calls need to be made against the Grid Master WAPI, the CP appliance cannot take these requests.<\/p>\n<p>Create the DNS zone and assign two name servers:<\/p>\n<pre>curl -k1 -u clouduser:infoblox -H \"Content-Type: application\/json\" -X POST https:\/\/172.21.0.30\/wapi\/v2.3.1\/zone_auth -d '{\"fqdn\":\"lambda.test\",\"grid_primary\": [{\"name\": \"lambdagm.localdomain\", \"stealth\": false}],\"grid_secondaries\": [{\"name\": \"lambdacp.localdomain\"}],\"extattrs\":{\"Tenant ID\":{\"value\":\"LambdaTenant\"}, \"CMP Type\":{\"value\":\"AWS\"} ,\"Cloud API Owned\":{\"value\":\"True\"}}}'<\/pre>\n<p>Create the vDiscovery task:<\/p>\n<pre>curl -k1 -u clouduser:infoblox -H \"Content-Type: application\/json\" -X POST https:\/\/172.21.0.20\/wapi\/v2.3.1\/vdiscoverytask -d '{\"name\": \"ec2.eu-west-1\", \"driver_type\": \"AWS\",  \"fqdn_or_ip\": \"ec2.eu-west-1.amazonaws.com\", \"username\": \"********\", \"password\": \"********\", \"member\": \"lambdacp.localdomain\", \"port\": 443, \"protocol\": \"HTTPS\", \"auto_consolidate_cloud_ea\": true, \"auto_consolidate_managed_tenant\": true, \"auto_consolidate_managed_vm\": true, \"merge_data\": true, \"private_network_view\": \"default\", \"private_network_view_mapping_policy\": \"DIRECT\", \"public_network_view\": \"default\", \"public_network_view_mapping_policy\": \"DIRECT\", \"update_metadata\": true, \"scheduled_run\": {\"_struct\":\"setting:schedule\",\"frequency\": \"HOURLY\", \"repeat\": \"RECUR\", \"minutes_past_hour\": 1, \"disable\": true}}'<\/pre>\n<p>Run the vDiscovery task manually:<\/p>\n<pre>curl -k1 -u clouduser:infoblox -H \"Content-Type: application\/json\" -X POST https:\/\/10.60.27.10\/wapi\/v2.3.1\/vdiscoverytask\/ZG5zLmNkaXNjb3ZlcnlfdGFzayRlYzIuZXUtd2VzdC0x:ec2.eu-west-1?_function=vdiscovery_control -d '{\"action\":\"START\"}'<\/pre>\n<p>After running the vDiscovery you should see all of the networks discovered from AWS in the Data Management -&gt; IPAM tab in Infoblox Grid Manager. This should include your VPCs as network containers and any subnets within those VPCs as leaf networks. I\u2019ll use these later for IPAM functions. vDiscovery saved having to create these networks manually and will ensure any IP addresses currently in use won\u2019t be reused.<\/p>\n<p><span class=\"lia-message-image-wrapper lia-message-image-actions-narrow lia-message-image-actions-below\"><img decoding=\"async\" class=\"lia-media-image\" tabindex=\"0\" title=\"Screen Shot 2016-06-29 at 2.52.37 PM.png\" src=\"https:\/\/cixhp49439.i.lithium.com\/t5\/image\/serverpage\/image-id\/670iE049368EEA366B12\/image-size\/original?v=v2&amp;px=-1\" alt=\"Screen Shot 2016-06-29 at 2.52.37 PM.png\" border=\"0\" \/><i class=\"lia-fa lia-fa-search-plus lia-media-lightbox-trigger\" tabindex=\"0\" aria-label=\"Enlarge image\"><\/i><\/span><\/p>\n<p>Everything is now configured and ready to use with AWS Lambda.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In the previous blog post I presented an overview of the DNS and IPAM automation possible even when using only the native AWS provisioning tools such as the web console and CloudFormation. This next post in the series covers the setup and configuration of an Infoblox Cloud Platform Appliance in an AWS VPC to enable [&hellip;]<\/p>\n","protected":false},"author":171,"featured_media":2636,"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":[131,42,60],"class_list":{"0":"post-2635","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-community","8":"tag-api","9":"tag-cloud-automation","10":"tag-wapi","11":"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 with AWS Lambda CloudFormation and CloudTrail Part 2 - Cloud Platform Setup<\/title>\n<meta name=\"description\" content=\"In the previous blog post I presented an overview of the DNS and IPAM automation possible even when using only the native AWS provisioning tools such as the web console and CloudFormation. This next post in the series covers the setup and configuration of an Infoblox Cloud Platform Appliance in an AWS VPC to enable this.\" \/>\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-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Infoblox with AWS Lambda CloudFormation and CloudTrail Part 2 - Cloud Platform Setup\" \/>\n<meta property=\"og:description\" content=\"In the previous blog post I presented an overview of the DNS and IPAM automation possible even when using only the native AWS provisioning tools such as the web console and CloudFormation. This next post in the series covers the setup and configuration of an Infoblox Cloud Platform Appliance in an AWS VPC to enable this.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.infoblox.com\/blog\/community\/infoblox-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\/\" \/>\n<meta property=\"og:site_name\" content=\"Infoblox Blog\" \/>\n<meta property=\"article:published_time\" content=\"2016-07-13T07:00:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-05-06T17:28:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/iotblogmonday-2-1.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=\"Blair Rampling\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Blair Rampling\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 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-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/infoblox-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\\\/\"},\"author\":{\"name\":\"Blair Rampling\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#\\\/schema\\\/person\\\/08d2cbe1d1c43794bbb50c3fcaad9d66\"},\"headline\":\"Infoblox with AWS Lambda CloudFormation and CloudTrail Part 2 &#8211; Cloud Platform Setup\",\"datePublished\":\"2016-07-13T07:00:47+00:00\",\"dateModified\":\"2020-05-06T17:28:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/infoblox-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\\\/\"},\"wordCount\":785,\"publisher\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/infoblox-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/wp-content\\\/uploads\\\/iotblogmonday-2-1.jpg\",\"keywords\":[\"API\",\"Cloud Automation\",\"WAPI\"],\"articleSection\":[\"Community\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/infoblox-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\\\/\",\"url\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/infoblox-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\\\/\",\"name\":\"Infoblox with AWS Lambda CloudFormation and CloudTrail Part 2 - Cloud Platform Setup\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/infoblox-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/infoblox-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/wp-content\\\/uploads\\\/iotblogmonday-2-1.jpg\",\"datePublished\":\"2016-07-13T07:00:47+00:00\",\"dateModified\":\"2020-05-06T17:28:06+00:00\",\"description\":\"In the previous blog post I presented an overview of the DNS and IPAM automation possible even when using only the native AWS provisioning tools such as the web console and CloudFormation. This next post in the series covers the setup and configuration of an Infoblox Cloud Platform Appliance in an AWS VPC to enable this.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/infoblox-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/infoblox-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/infoblox-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/wp-content\\\/uploads\\\/iotblogmonday-2-1.jpg\",\"contentUrl\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/wp-content\\\/uploads\\\/iotblogmonday-2-1.jpg\",\"width\":660,\"height\":454,\"caption\":\"Infoblox with AWS Lambda CloudFormation and CloudTrail Part 2 - Cloud Platform Setup\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/infoblox-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\\\/#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 with AWS Lambda CloudFormation and CloudTrail Part 2 &#8211; Cloud Platform Setup\"}]},{\"@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\\\/08d2cbe1d1c43794bbb50c3fcaad9d66\",\"name\":\"Blair Rampling\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/af4c66005252a164d2efe693b93e9a0fc2110a6fb709b276bd0042962a784153?s=96&d=blank&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/af4c66005252a164d2efe693b93e9a0fc2110a6fb709b276bd0042962a784153?s=96&d=blank&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/af4c66005252a164d2efe693b93e9a0fc2110a6fb709b276bd0042962a784153?s=96&d=blank&r=g\",\"caption\":\"Blair Rampling\"},\"url\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/author\\\/blair-rampling\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Infoblox with AWS Lambda CloudFormation and CloudTrail Part 2 - Cloud Platform Setup","description":"In the previous blog post I presented an overview of the DNS and IPAM automation possible even when using only the native AWS provisioning tools such as the web console and CloudFormation. This next post in the series covers the setup and configuration of an Infoblox Cloud Platform Appliance in an AWS VPC to enable this.","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-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\/","og_locale":"en_US","og_type":"article","og_title":"Infoblox with AWS Lambda CloudFormation and CloudTrail Part 2 - Cloud Platform Setup","og_description":"In the previous blog post I presented an overview of the DNS and IPAM automation possible even when using only the native AWS provisioning tools such as the web console and CloudFormation. This next post in the series covers the setup and configuration of an Infoblox Cloud Platform Appliance in an AWS VPC to enable this.","og_url":"https:\/\/www.infoblox.com\/blog\/community\/infoblox-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\/","og_site_name":"Infoblox Blog","article_published_time":"2016-07-13T07:00:47+00:00","article_modified_time":"2020-05-06T17:28:06+00:00","og_image":[{"width":660,"height":454,"url":"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/iotblogmonday-2-1.jpg","type":"image\/jpeg"}],"author":"Blair Rampling","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Blair Rampling","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.infoblox.com\/blog\/community\/infoblox-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\/#article","isPartOf":{"@id":"https:\/\/www.infoblox.com\/blog\/community\/infoblox-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\/"},"author":{"name":"Blair Rampling","@id":"https:\/\/www.infoblox.com\/blog\/#\/schema\/person\/08d2cbe1d1c43794bbb50c3fcaad9d66"},"headline":"Infoblox with AWS Lambda CloudFormation and CloudTrail Part 2 &#8211; Cloud Platform Setup","datePublished":"2016-07-13T07:00:47+00:00","dateModified":"2020-05-06T17:28:06+00:00","mainEntityOfPage":{"@id":"https:\/\/www.infoblox.com\/blog\/community\/infoblox-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\/"},"wordCount":785,"publisher":{"@id":"https:\/\/www.infoblox.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.infoblox.com\/blog\/community\/infoblox-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\/#primaryimage"},"thumbnailUrl":"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/iotblogmonday-2-1.jpg","keywords":["API","Cloud Automation","WAPI"],"articleSection":["Community"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.infoblox.com\/blog\/community\/infoblox-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\/","url":"https:\/\/www.infoblox.com\/blog\/community\/infoblox-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\/","name":"Infoblox with AWS Lambda CloudFormation and CloudTrail Part 2 - Cloud Platform Setup","isPartOf":{"@id":"https:\/\/www.infoblox.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.infoblox.com\/blog\/community\/infoblox-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\/#primaryimage"},"image":{"@id":"https:\/\/www.infoblox.com\/blog\/community\/infoblox-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\/#primaryimage"},"thumbnailUrl":"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/iotblogmonday-2-1.jpg","datePublished":"2016-07-13T07:00:47+00:00","dateModified":"2020-05-06T17:28:06+00:00","description":"In the previous blog post I presented an overview of the DNS and IPAM automation possible even when using only the native AWS provisioning tools such as the web console and CloudFormation. This next post in the series covers the setup and configuration of an Infoblox Cloud Platform Appliance in an AWS VPC to enable this.","breadcrumb":{"@id":"https:\/\/www.infoblox.com\/blog\/community\/infoblox-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.infoblox.com\/blog\/community\/infoblox-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.infoblox.com\/blog\/community\/infoblox-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\/#primaryimage","url":"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/iotblogmonday-2-1.jpg","contentUrl":"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/iotblogmonday-2-1.jpg","width":660,"height":454,"caption":"Infoblox with AWS Lambda CloudFormation and CloudTrail Part 2 - Cloud Platform Setup"},{"@type":"BreadcrumbList","@id":"https:\/\/www.infoblox.com\/blog\/community\/infoblox-with-aws-lambda-cloudformation-and-cloudtrail-part-2-cloud-platform-setup\/#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 with AWS Lambda CloudFormation and CloudTrail Part 2 &#8211; Cloud Platform Setup"}]},{"@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\/08d2cbe1d1c43794bbb50c3fcaad9d66","name":"Blair Rampling","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/af4c66005252a164d2efe693b93e9a0fc2110a6fb709b276bd0042962a784153?s=96&d=blank&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/af4c66005252a164d2efe693b93e9a0fc2110a6fb709b276bd0042962a784153?s=96&d=blank&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/af4c66005252a164d2efe693b93e9a0fc2110a6fb709b276bd0042962a784153?s=96&d=blank&r=g","caption":"Blair Rampling"},"url":"https:\/\/www.infoblox.com\/blog\/author\/blair-rampling\/"}]}},"_links":{"self":[{"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/posts\/2635","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\/171"}],"replies":[{"embeddable":true,"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/comments?post=2635"}],"version-history":[{"count":1,"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/posts\/2635\/revisions"}],"predecessor-version":[{"id":2637,"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/posts\/2635\/revisions\/2637"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/media\/2636"}],"wp:attachment":[{"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/media?parent=2635"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/categories?post=2635"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/tags?post=2635"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}