{"id":52208,"date":"2020-01-22T15:48:06","date_gmt":"2020-01-22T20:48:06","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=52208"},"modified":"2021-11-15T14:28:58","modified_gmt":"2021-11-15T19:28:58","slug":"ultrastack-ansible-configuration-file","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/ansible\/ultrastack-ansible-configuration-file\/","title":{"rendered":"Editing the UltraStack Ansible Configuration File"},"content":{"rendered":"\n<p><a href=\"https:\/\/www.inmotionhosting.com\/ansible\">Ansible<\/a> offers the ability to set default settings for how modules and <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/ansible\/create-an-ansible-playbook\/\">playbooks<\/a> interact with <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/ansible\/add-hosts-to-ansible-inventory\/\">remote nodes in your inventory<\/a>. There is a huge list of settings you can add within your <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https:\/\/docs.ansible.com\/ansible\/latest\/reference_appendices\/config.html\" target=\"_blank\">Ansible configuration file<\/a>. Below we cover how to <a href=\"#locate\">locate your Ansible configuration file<\/a> and <a href=\"#configuration\">included settings<\/a>. Managing your Ansible agent on CentOS, Ubuntu, or Debian is a great project for <a href=\"https:\/\/www.inmotionhosting.com\/cloud-vps\">Cloud VPS Hosting<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"locate\">Locate Ansible Configuration File<\/h2>\n\n\n\n<ol class=\"article_list wp-block-list\"><li><a href=\"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/how-to-login-ssh\/\">Log into SSH<\/a><\/li><li><a href=\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/using-the-linux-cd-command\/\">Navigate to your Ansible directory<\/a><\/li><li>Edit the Ansible configuration file: <code>nano ansible.cfg<\/code><\/li><\/ol>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"configuration\">Ansible Configuration<\/h2>\n\n\n\n<p>Below is an explanation of each setting included in our UltraStack Ansible configuration file.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">ansible_managed = 'Managed by Ansible, do not edit directly'<\/pre>\n\n\n\n<p>When running a task that transfers the configuration file to a remote host, this notice displays to warn that any specified variables will overwrite the original file during transfer.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"callback\">Enable Callback Plugins<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">callback_whitelist = profile_tasks, timer<\/pre>\n\n\n\n<p>Callback plugins enhance output and actions from Ansible events.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>profile_tasks<\/strong> outputs time to execution for a task, similar to the <code>time<\/code> Linux command<\/li><li><strong>timer<\/strong> outputs time to execution for play stats<\/li><\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"forks\">Maximum Forks<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">forks = 25<\/pre>\n\n\n\n<p>\u201cForks\u201d are the maximum amount of hosts Ansible can run tasks against at one time. Lowering the max number for forks decreases the system resources required from the Ansible control node.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"host-key\">Host Key Checking for Authentication<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">host_key_checking = False<\/pre>\n\n\n\n<p>This function checks the key in a remote host\u2019s <em>known_hosts<\/em> directory for authentication upon first connection to prevent server spoofing. Disabling this forces Ansible tasks to run without requesting this interactive confirmation. The options are &#8220;True&#8221; or &#8220;False.&#8221;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"polling\">Process Polling<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">internal_poll_interval = 0.01<\/pre>\n\n\n\n<p>This sets the interval (in seconds) between internal process polling for an estimated time for completion of a task. Higher values decrease CPU usage. Lower values improve graphical user interface (GUI) responsiveness (e.g. <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https:\/\/www.ansible.com\/products\/tower\" target=\"_blank\">Ansible Tower<\/a>).<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"inventory\">Default Inventory Location<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">inventory = .\/inventory.yml<\/pre>\n\n\n\n<p>Setting a default <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/ansible\/\">Ansible inventory location<\/a> negates the need to define it each time you run a module or playbook. Change this if you decide to move your inventory file for security by obfuscation or other reasons.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"cowsay\">Cowsay Fun Messages<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">nocows = 1<\/pre>\n\n\n\n<p><a href=\"https:\/\/en.wikipedia.org\/wiki\/Cowsay\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">Cowsay<\/a> is a CLI program that shows a cow and fun messages while running tasks. We disable Cowsay by default for a sleek, professional experience. Remove this line to enable cowsay.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"console\">Default Callback Plugin For Console Output<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">stdout_callback = yaml<\/pre>\n\n\n\n<p>You can only use one main callback plugin at once. The YAML callback plugin provides human-readable output instead of raw JSON output.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"compression\">Compression Level for Less Bandwidth<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">var_compression_level = 9<\/pre>\n\n\n\n<p>Compress Ansible modules and variables before transferring them for less bandwidth usage. This can be set between 0-9.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"command-timeout\">Time Before Timeout<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">command_timeout = 300<\/pre>\n\n\n\n<p>Set how many seconds to wait for a response from a remote node before a task times out.<\/p>\n\n\n\n<p class=\"alert alert-info\">Convert minutes to seconds with the<a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https:\/\/duckduckgo.com\/?q=seconds+to+days&amp;ia=answer\" target=\"_blank\"> DuckDuckGo converter<\/a>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"time-idle\">Time Idle<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">connect_timeout = 300<\/pre>\n\n\n\n<p>Set how many seconds a connection will idle with no activity before closing.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"ssh-timeout\">SSH Timeout<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">timeout = 300<\/pre>\n\n\n\n<p>Set how many seconds to wait between SSH connection attempts.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"pipelining\">Pipelining&nbsp;<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">pipelining = True<\/pre>\n\n\n\n<p>By default, Ansible connects to the remote host, transfers the module, and executes it using separate connections per module. Pipelining reduces this to one SSH connection per module to improve performance. However, when using <code>sudo<\/code> you must disable \u201crequiretty\u201d in <em>\/etc\/sudoers<\/em> on remote hosts.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"ssh-retries\">Retries if SSH Connection Fails<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">retries = 1<\/pre>\n\n\n\n<p>Set how many times Ansible retries if an SSH connection fails before signaling a task failed.<\/p>\n\n\n\n<p>Follow our<a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/ansible\/\"> Ansible Education Channel<\/a> to learn more about IT automation.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Ansible offers the ability to set default settings for how modules and playbooks interact with remote nodes in your inventory. There is a huge list of settings you can add within your Ansible configuration file. Below we cover how to locate your Ansible configuration file and included settings. Managing your Ansible agent on CentOS, Ubuntu,<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/ansible\/ultrastack-ansible-configuration-file\/\"> Read More ><\/a><\/p>\n","protected":false},"author":57014,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4349],"tags":[],"class_list":["post-52208","post","type-post","status-publish","format-standard","hentry","category-ansible"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Editing the UltraStack Ansible Configuration File | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"Learn how to edit your UltraStack Ansible configuration file and how your Ansible agent interacts with remote machines in your inventory.\" \/>\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.inmotionhosting.com\/support\/edu\/ansible\/ultrastack-ansible-configuration-file\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Editing the UltraStack Ansible Configuration File | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"Learn how to edit your UltraStack Ansible configuration file and how your Ansible agent interacts with remote machines in your inventory.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/ansible\/ultrastack-ansible-configuration-file\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2020-01-22T20:48:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-15T19:28:58+00:00\" \/>\n<meta name=\"author\" content=\"InMotion Hosting Contributor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InMotion Hosting Contributor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/ansible\/ultrastack-ansible-configuration-file\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/ansible\/ultrastack-ansible-configuration-file\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"Editing the UltraStack Ansible Configuration File\",\"datePublished\":\"2020-01-22T20:48:06+00:00\",\"dateModified\":\"2021-11-15T19:28:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/ansible\/ultrastack-ansible-configuration-file\/\"},\"wordCount\":542,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"articleSection\":[\"Ansible Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/ansible\/ultrastack-ansible-configuration-file\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/ansible\/ultrastack-ansible-configuration-file\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/ansible\/ultrastack-ansible-configuration-file\/\",\"name\":\"Editing the UltraStack Ansible Configuration File | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"datePublished\":\"2020-01-22T20:48:06+00:00\",\"dateModified\":\"2021-11-15T19:28:58+00:00\",\"description\":\"Learn how to edit your UltraStack Ansible configuration file and how your Ansible agent interacts with remote machines in your inventory.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/ansible\/ultrastack-ansible-configuration-file\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/ansible\/ultrastack-ansible-configuration-file\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/ansible\/ultrastack-ansible-configuration-file\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Editing the UltraStack Ansible Configuration File\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\",\"name\":\"InMotion Hosting Contributor\",\"description\":\"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!\",\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/inmotion-hosting\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Editing the UltraStack Ansible Configuration File | InMotion Hosting","description":"Learn how to edit your UltraStack Ansible configuration file and how your Ansible agent interacts with remote machines in your inventory.","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.inmotionhosting.com\/support\/edu\/ansible\/ultrastack-ansible-configuration-file\/","og_locale":"en_US","og_type":"article","og_title":"Editing the UltraStack Ansible Configuration File | InMotion Hosting","og_description":"Learn how to edit your UltraStack Ansible configuration file and how your Ansible agent interacts with remote machines in your inventory.","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/ansible\/ultrastack-ansible-configuration-file\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2020-01-22T20:48:06+00:00","article_modified_time":"2021-11-15T19:28:58+00:00","author":"InMotion Hosting Contributor","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"InMotion Hosting Contributor","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/ansible\/ultrastack-ansible-configuration-file\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/ansible\/ultrastack-ansible-configuration-file\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"Editing the UltraStack Ansible Configuration File","datePublished":"2020-01-22T20:48:06+00:00","dateModified":"2021-11-15T19:28:58+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/ansible\/ultrastack-ansible-configuration-file\/"},"wordCount":542,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"articleSection":["Ansible Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/ansible\/ultrastack-ansible-configuration-file\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/ansible\/ultrastack-ansible-configuration-file\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/ansible\/ultrastack-ansible-configuration-file\/","name":"Editing the UltraStack Ansible Configuration File | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"datePublished":"2020-01-22T20:48:06+00:00","dateModified":"2021-11-15T19:28:58+00:00","description":"Learn how to edit your UltraStack Ansible configuration file and how your Ansible agent interacts with remote machines in your inventory.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/ansible\/ultrastack-ansible-configuration-file\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/ansible\/ultrastack-ansible-configuration-file\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/ansible\/ultrastack-ansible-configuration-file\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Editing the UltraStack Ansible Configuration File"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644","name":"InMotion Hosting Contributor","description":"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!","sameAs":["https:\/\/www.linkedin.com\/company\/inmotion-hosting\/","https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/52208","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/57014"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=52208"}],"version-history":[{"count":15,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/52208\/revisions"}],"predecessor-version":[{"id":91597,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/52208\/revisions\/91597"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=52208"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=52208"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=52208"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}