{"id":997,"date":"2019-10-08T08:00:02","date_gmt":"2019-10-08T08:00:02","guid":{"rendered":"https:\/\/www.letscloud.io\/blog\/?p=997"},"modified":"2019-10-07T20:17:44","modified_gmt":"2019-10-07T20:17:44","slug":"devops-what-are-the-most-used-tools","status":"publish","type":"post","link":"https:\/\/www.letscloud.io\/blog\/devops-what-are-the-most-used-tools\/","title":{"rendered":"DevOps: What Are The Most Used Tools?"},"content":{"rendered":"\n<p>The list of tools with the &#8220;DevOps&#8221; label is growing faster everyday.Getting to know the needs of your team is important. It will enable the team to use the right services to facilitate the development of new applications.<\/p>\n\n\n\n<p>This article will show you the different Devops tools by category to improve the productivity and collaboration of your teams.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">DevOps Culture and its Advantages<\/h2>\n\n\n\n<p>DevOps is the contraction of the words &#8220;developers&#8221; and &#8220;ops&#8221;. It is a collaborative culture of automating processes between development teams and operational departments to facilitate software development, testing and delivery.<\/p>\n\n\n\n<p>In a <a href=\"http:\/\/45.42.162.214\/devops-a-dual-skill-profile-for-more-agility\/\">previous article<\/a>, we saw that these teams have traditionally rather opposite interests: the developers are supposed to create value and make the product\/service always more innovative and the operational ones aim at maintaining the stability of the infrastructures.<\/p>\n\n\n\n<p><strong>The benefits of Devops culture are numerous<\/strong>. A Devops collaboration enables faster, higher quality production releases. The Devops team delivers more often while maintaining the quality and stability of infrastructures. A good Devops strategy relies on a close collaboration between the ops and the developers, a better communication and therefore a better performance of the teams.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Different tools used in DevOps&nbsp;<\/h2>\n\n\n\n<p>Devops teams use various tools on a daily basis for a variety of tasks and assignments. We prepared a list (not exhaustive) with these tools.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Source code management tools<\/h3>\n\n\n\n<p>The first step in a Devops collaboration is to align development and ops teams with the same source code management tool. In concrete terms, this enables us to know the various modifications of the code and their authors.&nbsp;<\/p>\n\n\n\n<p>This is a versioning tool: any code change will create a new version. Historically, ops do not use this kind of tools because there is little automation, everything is manual and there is no code. But once there is a code, the best practice is to share it and have it re-read by peers. This is where code management tools come into play.<\/p>\n\n\n\n<p>There are two types of code management:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Tools like <strong>Git <\/strong>and <strong>Subversion<\/strong>, which are used to create a history of its files: at that moment, such change was made in your files. Subversion is an older and less efficient tool than Git.<\/li><\/ul>\n\n\n\n<ul class=\"wp-block-list\"><li>Tools like <strong>Github<\/strong>, <strong>Gitlab <\/strong>and <strong>Bitbucket <\/strong>that serve to share its code, and thus the history that goes with it. They are based on Git and it is possible to have the history of the code and work on several. If historically Github has a monopoly, Gitlab becomes more and more popular, thanks to Gitlab CI which is effective.<\/li><\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Continuous Integration\/Continuous Deployment Testing<\/h3>\n\n\n\n<p>The Continuous Integration and Continuous Deployment tools, or CI\/CD, enable the automation of source code change testing. Concretely, CI\/CD tools enable the modernization of applications by reducing the time needed to create new functions.<br><\/p>\n\n\n\n<p>There are many CI\/CD tools. One of the most used platforms is <strong>Jenkins<\/strong>, an open source tool (which can be hard to handle, though).<\/p>\n\n\n\n<p>There are also paid solutions like <strong>GitlabCI<\/strong>, <strong>Bamboo<\/strong>, <strong>TeamCity<\/strong>, <strong>Concourse<\/strong>, <strong>CircleCI <\/strong>or <strong>Travis CI<\/strong>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Containers<\/h3>\n\n\n\n<p><a href=\"http:\/\/45.42.162.214\/docker-container\/\">Containers <\/a>make it possible to isolate an application with all the elements that it needs to function. The use of containers makes it possible to be as &#8220;iso&#8221; as possible from the code of the developers until the production and to have no surprise at the time of the production.<\/p>\n\n\n\n<p><strong>Docker <\/strong>automates and standardizes application deployment in these virtual containers and is the leader in this tool segment. The alternative to Docker is <strong>RKT<\/strong>, which is the standard pushed by the <strong>CoreOS <\/strong>foundation.<\/p>\n\n\n\n<p>When using containers, the need for an orchestrator is very quickly felt.<\/p>\n\n\n\n<p>Container orchestration simplifies deployment and management. The most used orchestrator on the market is <strong>Kubernetes<\/strong>, but there are others like <strong>MesOs <\/strong>and <strong>Docker-Swarm<\/strong>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Automation and Configuration Management<\/h3>\n\n\n\n<p>Automation eliminates the repetitive tasks of Devops teams.<\/p>\n\n\n\n<p>There are several types of automation in Devops:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Set up automatic configurations on servers<\/li><li>Automate server actions<\/li><\/ul>\n\n\n\n<p>There are numerous tools depending on the existing infrastructure and the needs of the company:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>Terraform<\/strong>: infrastructure provisioning;<\/li><li><strong>Ansible<\/strong>: configuration management of slave servers;<\/li><li><strong>Puppet<\/strong>: configuration management of slave servers;<\/li><li><strong>Salt<\/strong>: management of the configuration of the slave servers.<\/li><\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Monitoring and alerting<\/h3>\n\n\n\n<p>The monitoring and alerting tools allow you to have an overview of your infrastructure, solve problems that arise and improve performance.<\/p>\n\n\n\n<p>The open source <strong>Prometheus <\/strong>application and <strong>Grafana <\/strong>service are used to monitor Kubernetes clusters. By coupling three tools, <strong>ELK <\/strong>(<strong>Elasticsearch, Logstash and Kibana<\/strong>) is a powerful log analysis solution. One can play on the performance of each tool individually and adapt to its needs: Logstash for normalization\/sends logs, Elasticsearch for storage and Kibana for visualization. ELK allows for log analysis (forensics) and aggregation (dashboard).<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Project Management Tools<\/h3>\n\n\n\n<p>To carry out software development, it is essential to rely on a common project management tool in the Devops team.<\/p>\n\n\n\n<p><strong>Jira<\/strong> is an agile project management tool that allows you to plan, track and manage software development projects. With Jira, each member of the development team can track project progress and set sprint priorities.<\/p>\n\n\n\n<p>On the other hand, <a href=\"https:\/\/trello.com\"><strong>Trello <\/strong><\/a>distinguishes itself by its intuitiveness and simplicity to manage the different tasks of the project.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Secret management<\/h3>\n\n\n\n<p>With the need to have an ever more secure security, new tools for managing secrets appear as <strong>Vault<\/strong>. Vault allows an organization of static and dynamic secrets.<\/p>\n\n\n\n<p><strong>Secrets<\/strong>, the Kubernetes Secrets Management Service is an alternative to Vault.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The list of tools with the &#8220;DevOps&#8221; label is growing faster everyday.Getting to know the needs of your team is important. It will enable the team to use the right services to facilitate the development of new applications. This article will show you the different Devops tools by category to improve the productivity and collaboration &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/www.letscloud.io\/blog\/devops-what-are-the-most-used-tools\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;DevOps: What Are The Most Used Tools?&#8221;<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":1002,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[8,7],"tags":[],"class_list":["post-997","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-culture","category-development","entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>DevOps: What Are The Most Used Tools? - LetsCloud Blog<\/title>\n<meta name=\"description\" content=\"This post brings a list with the most used tools by DevOps. If you want to move and make a faster team, click here to get all our tips\" \/>\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.letscloud.io\/blog\/devops-what-are-the-most-used-tools\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"DevOps: What Are The Most Used Tools? - LetsCloud Blog\" \/>\n<meta property=\"og:description\" content=\"This post brings a list with the most used tools by DevOps. If you want to move and make a faster team, click here to get all our tips\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.letscloud.io\/blog\/devops-what-are-the-most-used-tools\/\" \/>\n<meta property=\"og:site_name\" content=\"LetsCloud Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/LetsCloudOfficial\" \/>\n<meta property=\"article:published_time\" content=\"2019-10-08T08:00:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.letscloud.io\/blog\/wp-content\/uploads\/2019\/10\/what-are-the-most-used-tools.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"880\" \/>\n\t<meta property=\"og:image:height\" content=\"400\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Laura Vick\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@letscloudInc\" \/>\n<meta name=\"twitter:site\" content=\"@letscloudInc\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Laura Vick\" \/>\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.letscloud.io\\\/blog\\\/devops-what-are-the-most-used-tools\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/devops-what-are-the-most-used-tools\\\/\"},\"author\":{\"name\":\"Laura Vick\",\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/#\\\/schema\\\/person\\\/7ccd4ae516cfa4b7a98868308f061a1a\"},\"headline\":\"DevOps: What Are The Most Used Tools?\",\"datePublished\":\"2019-10-08T08:00:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/devops-what-are-the-most-used-tools\\\/\"},\"wordCount\":910,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/devops-what-are-the-most-used-tools\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/10\\\/what-are-the-most-used-tools.jpg\",\"articleSection\":[\"Culture\",\"Development\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/devops-what-are-the-most-used-tools\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/devops-what-are-the-most-used-tools\\\/\",\"url\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/devops-what-are-the-most-used-tools\\\/\",\"name\":\"DevOps: What Are The Most Used Tools? - LetsCloud Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/devops-what-are-the-most-used-tools\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/devops-what-are-the-most-used-tools\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/10\\\/what-are-the-most-used-tools.jpg\",\"datePublished\":\"2019-10-08T08:00:02+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/#\\\/schema\\\/person\\\/7ccd4ae516cfa4b7a98868308f061a1a\"},\"description\":\"This post brings a list with the most used tools by DevOps. If you want to move and make a faster team, click here to get all our tips\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/devops-what-are-the-most-used-tools\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/devops-what-are-the-most-used-tools\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/devops-what-are-the-most-used-tools\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/10\\\/what-are-the-most-used-tools.jpg\",\"contentUrl\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/10\\\/what-are-the-most-used-tools.jpg\",\"width\":880,\"height\":400},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/devops-what-are-the-most-used-tools\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"DevOps: What Are The Most Used Tools?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/\",\"name\":\"LetsCloud Blog\",\"description\":\"Everything you need. Nothing you don\u2019t.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/#\\\/schema\\\/person\\\/7ccd4ae516cfa4b7a98868308f061a1a\",\"name\":\"Laura Vick\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/962d94cc35dd2df7feb3bcb890cb3bafa3c7af18cde3657e83448d16473f87c6?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/962d94cc35dd2df7feb3bcb890cb3bafa3c7af18cde3657e83448d16473f87c6?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/962d94cc35dd2df7feb3bcb890cb3bafa3c7af18cde3657e83448d16473f87c6?s=96&d=mm&r=g\",\"caption\":\"Laura Vick\"},\"sameAs\":[\"https:\\\/\\\/www.letscloud.io\\\/\"],\"url\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/author\\\/lauravick\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"DevOps: What Are The Most Used Tools? - LetsCloud Blog","description":"This post brings a list with the most used tools by DevOps. If you want to move and make a faster team, click here to get all our tips","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.letscloud.io\/blog\/devops-what-are-the-most-used-tools\/","og_locale":"en_US","og_type":"article","og_title":"DevOps: What Are The Most Used Tools? - LetsCloud Blog","og_description":"This post brings a list with the most used tools by DevOps. If you want to move and make a faster team, click here to get all our tips","og_url":"https:\/\/www.letscloud.io\/blog\/devops-what-are-the-most-used-tools\/","og_site_name":"LetsCloud Blog","article_publisher":"https:\/\/www.facebook.com\/LetsCloudOfficial","article_published_time":"2019-10-08T08:00:02+00:00","og_image":[{"width":880,"height":400,"url":"https:\/\/www.letscloud.io\/blog\/wp-content\/uploads\/2019\/10\/what-are-the-most-used-tools.jpg","type":"image\/jpeg"}],"author":"Laura Vick","twitter_card":"summary_large_image","twitter_creator":"@letscloudInc","twitter_site":"@letscloudInc","twitter_misc":{"Written by":"Laura Vick","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.letscloud.io\/blog\/devops-what-are-the-most-used-tools\/#article","isPartOf":{"@id":"https:\/\/www.letscloud.io\/blog\/devops-what-are-the-most-used-tools\/"},"author":{"name":"Laura Vick","@id":"https:\/\/www.letscloud.io\/blog\/#\/schema\/person\/7ccd4ae516cfa4b7a98868308f061a1a"},"headline":"DevOps: What Are The Most Used Tools?","datePublished":"2019-10-08T08:00:02+00:00","mainEntityOfPage":{"@id":"https:\/\/www.letscloud.io\/blog\/devops-what-are-the-most-used-tools\/"},"wordCount":910,"commentCount":0,"image":{"@id":"https:\/\/www.letscloud.io\/blog\/devops-what-are-the-most-used-tools\/#primaryimage"},"thumbnailUrl":"https:\/\/www.letscloud.io\/blog\/wp-content\/uploads\/2019\/10\/what-are-the-most-used-tools.jpg","articleSection":["Culture","Development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.letscloud.io\/blog\/devops-what-are-the-most-used-tools\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.letscloud.io\/blog\/devops-what-are-the-most-used-tools\/","url":"https:\/\/www.letscloud.io\/blog\/devops-what-are-the-most-used-tools\/","name":"DevOps: What Are The Most Used Tools? - LetsCloud Blog","isPartOf":{"@id":"https:\/\/www.letscloud.io\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.letscloud.io\/blog\/devops-what-are-the-most-used-tools\/#primaryimage"},"image":{"@id":"https:\/\/www.letscloud.io\/blog\/devops-what-are-the-most-used-tools\/#primaryimage"},"thumbnailUrl":"https:\/\/www.letscloud.io\/blog\/wp-content\/uploads\/2019\/10\/what-are-the-most-used-tools.jpg","datePublished":"2019-10-08T08:00:02+00:00","author":{"@id":"https:\/\/www.letscloud.io\/blog\/#\/schema\/person\/7ccd4ae516cfa4b7a98868308f061a1a"},"description":"This post brings a list with the most used tools by DevOps. If you want to move and make a faster team, click here to get all our tips","breadcrumb":{"@id":"https:\/\/www.letscloud.io\/blog\/devops-what-are-the-most-used-tools\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.letscloud.io\/blog\/devops-what-are-the-most-used-tools\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.letscloud.io\/blog\/devops-what-are-the-most-used-tools\/#primaryimage","url":"https:\/\/www.letscloud.io\/blog\/wp-content\/uploads\/2019\/10\/what-are-the-most-used-tools.jpg","contentUrl":"https:\/\/www.letscloud.io\/blog\/wp-content\/uploads\/2019\/10\/what-are-the-most-used-tools.jpg","width":880,"height":400},{"@type":"BreadcrumbList","@id":"https:\/\/www.letscloud.io\/blog\/devops-what-are-the-most-used-tools\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.letscloud.io\/blog\/"},{"@type":"ListItem","position":2,"name":"DevOps: What Are The Most Used Tools?"}]},{"@type":"WebSite","@id":"https:\/\/www.letscloud.io\/blog\/#website","url":"https:\/\/www.letscloud.io\/blog\/","name":"LetsCloud Blog","description":"Everything you need. Nothing you don\u2019t.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.letscloud.io\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.letscloud.io\/blog\/#\/schema\/person\/7ccd4ae516cfa4b7a98868308f061a1a","name":"Laura Vick","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/962d94cc35dd2df7feb3bcb890cb3bafa3c7af18cde3657e83448d16473f87c6?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/962d94cc35dd2df7feb3bcb890cb3bafa3c7af18cde3657e83448d16473f87c6?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/962d94cc35dd2df7feb3bcb890cb3bafa3c7af18cde3657e83448d16473f87c6?s=96&d=mm&r=g","caption":"Laura Vick"},"sameAs":["https:\/\/www.letscloud.io\/"],"url":"https:\/\/www.letscloud.io\/blog\/author\/lauravick\/"}]}},"_links":{"self":[{"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/posts\/997","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/comments?post=997"}],"version-history":[{"count":0,"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/posts\/997\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/media\/1002"}],"wp:attachment":[{"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/media?parent=997"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/categories?post=997"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/tags?post=997"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}