{"id":2591,"date":"2023-02-27T12:17:39","date_gmt":"2023-02-27T12:17:39","guid":{"rendered":"https:\/\/www.easydeploy.io\/blog\/?p=2591"},"modified":"2023-02-27T12:17:39","modified_gmt":"2023-02-27T12:17:39","slug":"automate-rds-instance-using-system-manager","status":"publish","type":"post","link":"https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/","title":{"rendered":"How to Stop and Start RDS Instance Automatically using System Manager to save AWS bill"},"content":{"rendered":"<h2>Introduction<\/h2>\n<p>AWS provides a fully managed Database service called <strong>RDS<\/strong>. What does mean the word <strong>fully managed.<\/strong> It has every things which are required to run a database in cloud and also we don&#8217;t need to worry about licensing. But there are some things that customers should be manage like availability of the database, choosing the right size of database engine, maintaining backups, cost optimization and so on.<\/p>\n<p>If you want to know how to <em><strong>upgrade the RDS database with minimal downtime<\/strong><\/em> feel free to look the following links to know more.<\/p>\n<ul>\n<li><em><a href=\"https:\/\/www.easydeploy.io\/blog\/upgrade-mysql-version-rds-using-aws-dms\/\" target=\"_blank\" rel=\"noopener\">Upgrade\u00a0MySQL\u00a0database version with\u00a0DMS<\/a><\/em><\/li>\n<li><em><a href=\"https:\/\/www.easydeploy.io\/blog\/upgrade-amazon-aurora-postgresql-latest-version\" target=\"_blank\" rel=\"noopener\">Upgrade\u00a0Aurora PostgreSQL\u00a0database version with DMS<\/a><\/em><\/li>\n<\/ul>\n<p>Here we are going to discuss about <strong>Cost optimization<\/strong> with the run time of a database. For example, If you want to run your database instance only a certain time like<strong> 9 am<\/strong> to <strong>9 pm.\u00a0<\/strong>But manually start the database in morning 9 am and stop it in evening 9 pm is boring, right. Some times you forget to start the database and it will lead the application downtime in the working hours.<\/p>\n<p>But if you setup an automation process which is stop and start the RDS database daily, at the time which you specified. Do you know how to do that? Don&#8217;t worry&#8230; Here is a solution that will give you a very simple end-to-end process.<\/p>\n<p>AWS provides a service called System Manager, which is we are gonna use to stop and start our database. Let&#8217;s get into the details now.<\/p>\n<h2 id=\"1.-Create-IAM-role-and-Policy-for-System-Manager\" data-renderer-start-pos=\"327\">Create IAM role and Policy for System Manager<\/h2>\n<ul class=\"ak-ul\" data-indent-level=\"1\">\n<li>\n<p data-renderer-start-pos=\"379\">In the <strong data-renderer-mark=\"true\">AWS IAM <\/strong>console click <strong data-renderer-mark=\"true\">create role<\/strong>.<\/p>\n<\/li>\n<li>\n<p data-renderer-start-pos=\"425\">Select the <strong data-renderer-mark=\"true\">Trust entity<\/strong> type to <strong data-renderer-mark=\"true\">AWS service <\/strong>and for <strong data-renderer-mark=\"true\">Use cases<\/strong>, search for <strong data-renderer-mark=\"true\">system manager <\/strong>and select it like the picture below.<\/p>\n<\/li>\n<li>\n<p data-renderer-start-pos=\"555\">Then click <strong data-renderer-mark=\"true\">Next <\/strong>button.<\/p>\n<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/1.webp\" alt=\"Stop and Start RDS Instance Automatically using System Manager select service\" width=\"1773\" height=\"788\" class=\"aligncenter wp-image-2575 size-full\" title=\"Stop and Start RDS Instance Automatically using System Manager select service\" srcset=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/1.webp 1773w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/1-300x133.webp 300w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/1-1024x455.webp 1024w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/1-768x341.webp 768w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/1-1536x683.webp 1536w\" sizes=\"(max-width: 1773px) 100vw, 1773px\" \/><\/p>\n<p>Now Click on the <strong data-renderer-mark=\"true\">Create policy <\/strong>button to create a new IAM policy.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/2.webp\" alt=\"Stop and Start RDS Instance Automatically using System Manager create policy\" width=\"1530\" height=\"316\" class=\"aligncenter wp-image-2576 size-full\" title=\"Stop and Start RDS Instance Automatically using System Manager create policy\" srcset=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/2.webp 1530w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/2-300x62.webp 300w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/2-1024x211.webp 1024w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/2-768x159.webp 768w\" sizes=\"(max-width: 1530px) 100vw, 1530px\" \/><\/p>\n<p>Copy the below code and paste it under the <strong data-renderer-mark=\"true\">JSON <\/strong>editor and click <strong data-renderer-mark=\"true\">Next:Tags<\/strong> followed by click <strong data-renderer-mark=\"true\">Next button<\/strong>.<\/p>\n<pre><span data-code-lang=\"\" data-ds--code--code-block=\"\" class=\"prismjs css-1x00our\"><code><span class=\"\">{\r\n<\/span><\/code><\/span><span data-code-lang=\"\" data-ds--code--code-block=\"\" class=\"prismjs css-1x00our\"><code>    \"Version\": \"2012-10-17\",\r\n<\/code><\/span><span data-code-lang=\"\" data-ds--code--code-block=\"\" class=\"prismjs css-1x00our\"><code>    \"Statement\": [\r\n<\/code><\/span><span data-code-lang=\"\" data-ds--code--code-block=\"\" class=\"prismjs css-1x00our\"><code>        {\r\n<\/code><\/span><span data-code-lang=\"\" data-ds--code--code-block=\"\" class=\"prismjs css-1x00our\"><code>            \"Effect\": \"Allow\",\r\n<\/code><\/span><span data-code-lang=\"\" data-ds--code--code-block=\"\" class=\"prismjs css-1x00our\"><code>            \"Action\": [\r\n<\/code><\/span><span data-code-lang=\"\" data-ds--code--code-block=\"\" class=\"prismjs css-1x00our\"><code>                \"rds:Describe*\",\r\n<\/code><\/span><span data-code-lang=\"\" data-ds--code--code-block=\"\" class=\"prismjs css-1x00our\"><code>                \"rds:Start*\",\r\n<\/code><\/span><span data-code-lang=\"\" data-ds--code--code-block=\"\" class=\"prismjs css-1x00our\"><code>                \"rds:Stop*\",\r\n<\/code><\/span><span data-code-lang=\"\" data-ds--code--code-block=\"\" class=\"prismjs css-1x00our\"><code>                \"rds:Reboot*\"\r\n<\/code><\/span><span data-code-lang=\"\" data-ds--code--code-block=\"\" class=\"prismjs css-1x00our\"><code>            ],\r\n<\/code><\/span><span data-code-lang=\"\" data-ds--code--code-block=\"\" class=\"prismjs css-1x00our\"><code>            \"Resource\": \"*\"\r\n<\/code><\/span><span data-code-lang=\"\" data-ds--code--code-block=\"\" class=\"prismjs css-1x00our\"><code>        }\r\n<\/code><\/span><span data-code-lang=\"\" data-ds--code--code-block=\"\" class=\"prismjs css-1x00our\"><code>    ]\r\n<\/code><\/span><span data-code-lang=\"\" data-ds--code--code-block=\"\" class=\"prismjs css-1x00our\"><code>}<\/code><\/span><\/pre>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/3.webp\" alt=\"Stop and Start RDS Instance Automatically using System Manager Add Permissions\" width=\"888\" height=\"626\" class=\"aligncenter wp-image-2577 \" title=\"Stop and Start RDS Instance Automatically using System Manager Add Permissions\" srcset=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/3.webp 1230w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/3-300x211.webp 300w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/3-1024x722.webp 1024w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/3-768x541.webp 768w\" sizes=\"(max-width: 888px) 100vw, 888px\" \/><\/p>\n<ul class=\"ak-ul\" data-indent-level=\"1\">\n<li>\n<p data-renderer-start-pos=\"1066\">On the Policy Review page, Enter a name for your IAM policy like \u2018<strong data-renderer-mark=\"true\">StopStartRebootRDS<\/strong>\u2019.<\/p>\n<\/li>\n<li>\n<p data-renderer-start-pos=\"1156\">Then click <strong data-renderer-mark=\"true\">Create policy<\/strong>.<\/p>\n<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/4.webp\" alt=\"Stop and Start RDS Instance Automatically using System Manager Create policy\" width=\"920\" height=\"635\" class=\"aligncenter wp-image-2578 \" title=\"Stop and Start RDS Instance Automatically using System Manager Create policy\" srcset=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/4.webp 1241w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/4-300x207.webp 300w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/4-1024x707.webp 1024w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/4-768x530.webp 768w\" sizes=\"(max-width: 920px) 100vw, 920px\" \/><\/p>\n<ul class=\"ak-ul\" data-indent-level=\"1\">\n<li>\n<p data-renderer-start-pos=\"1190\">Now navigate to the IAM Role page and click the <strong data-renderer-mark=\"true\">refresh <\/strong>button.<\/p>\n<\/li>\n<li>\n<p data-renderer-start-pos=\"1257\">And then search for <strong data-renderer-mark=\"true\">stopstart <\/strong>and choose the IAM policy that you have created and click <strong data-renderer-mark=\"true\">Next<\/strong>.<\/p>\n<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/5.webp\" alt=\"Stop and Start RDS Instance Automatically using System Manager Add policy\" width=\"1153\" height=\"448\" class=\"aligncenter wp-image-2579 \" title=\"Stop and Start RDS Instance Automatically using System Manager Add policy\" srcset=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/5.webp 1512w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/5-300x117.webp 300w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/5-1024x398.webp 1024w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/5-768x299.webp 768w\" sizes=\"(max-width: 1153px) 100vw, 1153px\" \/><\/p>\n<p>In the review page Enter role name like \u2018<strong data-renderer-mark=\"true\">StopStartRebootRDS<\/strong>\u2019.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/6.webp\" alt=\"Stop and Start RDS Instance Automatically using System Manager Add Role Name\" width=\"927\" height=\"323\" class=\"aligncenter wp-image-2580 \" title=\"Stop and Start RDS Instance Automatically using System Manager Add Role Name\" srcset=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/6.webp 1168w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/6-300x105.webp 300w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/6-1024x357.webp 1024w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/6-768x268.webp 768w\" sizes=\"(max-width: 927px) 100vw, 927px\" \/><\/p>\n<p>Scroll down to the bottom and you can able to see the attached permissions. Finally click <strong data-renderer-mark=\"true\">Create role<\/strong>.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/7.webp\" alt=\"Stop and Start RDS Instance Automatically using System Manager Create Role\" width=\"1022\" height=\"395\" class=\"aligncenter wp-image-2581 \" title=\"Stop and Start RDS Instance Automatically using System Manager Create Role\" srcset=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/7.webp 1498w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/7-300x116.webp 300w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/7-1024x396.webp 1024w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/7-768x297.webp 768w\" sizes=\"(max-width: 1022px) 100vw, 1022px\" \/><\/p>\n<h2 id=\"2.-Create-SSM-Association-for-Stop-RDS-Instance\" data-renderer-start-pos=\"1532\">Create SSM Association for Stop RDS Instance<span role=\"presentation\" class=\"heading-anchor-wrapper\"><\/span><\/h2>\n<ul class=\"ak-ul\" data-indent-level=\"1\">\n<li>\n<p data-renderer-start-pos=\"1583\">Navigate to the <strong data-renderer-mark=\"true\">Systems Manager<\/strong> console and in the left side click the <strong data-renderer-mark=\"true\">State Manager<\/strong> link under the <strong data-renderer-mark=\"true\">Node management<\/strong> section.<\/p>\n<\/li>\n<li>\n<p data-renderer-start-pos=\"1711\">Now click the <strong data-renderer-mark=\"true\">Create an Automation<\/strong> button.<\/p>\n<\/li>\n<\/ul>\n<ul class=\"ak-ul\" data-indent-level=\"1\">\n<li>\n<p data-renderer-start-pos=\"1762\">For <strong data-renderer-mark=\"true\">Name <\/strong>enter <strong data-renderer-mark=\"true\">StopInstanceRDS<\/strong>.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/8.webp\" alt=\"Stop and Start RDS Instance Automatically using System Manager State Manager\" width=\"1124\" height=\"537\" class=\"aligncenter wp-image-2582 \" title=\"Stop and Start RDS Instance Automatically using System Manager State Manager\" srcset=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/8.webp 1697w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/8-300x143.webp 300w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/8-1024x489.webp 1024w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/8-768x367.webp 768w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/8-1536x734.webp 1536w\" sizes=\"(max-width: 1124px) 100vw, 1124px\" \/><\/li>\n<li>\n<p data-renderer-start-pos=\"1797\">Under <strong data-renderer-mark=\"true\">Document <\/strong>section, search \u2018<strong data-renderer-mark=\"true\">AWS-Stop<\/strong>\u2019 and choose the \u2018<strong data-renderer-mark=\"true\">AWS-StopRdsInstance<\/strong>\u2019.<\/p>\n<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/9.webp\" alt=\"Stop and Start RDS Instance Automatically using System Manager State Manager Select Document\" width=\"665\" height=\"643\" class=\"aligncenter wp-image-2583 \" title=\"Stop and Start RDS Instance Automatically using System Manager State Manager Select Document\" srcset=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/9.webp 835w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/9-300x290.webp 300w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/9-768x742.webp 768w\" sizes=\"(max-width: 665px) 100vw, 665px\" \/><\/p>\n<ul class=\"ak-ul\" data-indent-level=\"1\">\n<li>\n<p data-renderer-start-pos=\"1885\">For execution choose <strong data-renderer-mark=\"true\">Simple execution<\/strong>.<\/p>\n<\/li>\n<li>\n<p data-renderer-start-pos=\"1927\">Under <strong data-renderer-mark=\"true\">Input Parameters <\/strong>section, for <strong data-renderer-mark=\"true\">InstanceId<\/strong>, you have to provide the name of the RDS instance which you want to stop and start periodically.<\/p>\n<\/li>\n<li>\n<p data-renderer-start-pos=\"2074\">For <strong data-renderer-mark=\"true\">AutomationAssumeRole<\/strong>, select the role which we have created the beginning of this blog.<\/p>\n<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/10.webp\" alt=\"Stop and Start RDS Instance Automatically using System Manager State Manager Select Execution\" width=\"701\" height=\"338\" class=\"aligncenter wp-image-2584 \" title=\"Stop and Start RDS Instance Automatically using System Manager State Manager Select Execution\" srcset=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/10.webp 856w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/10-300x145.webp 300w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/10-768x371.webp 768w\" sizes=\"(max-width: 701px) 100vw, 701px\" \/><\/p>\n<ul class=\"ak-ul\" data-indent-level=\"1\">\n<li>\n<p data-renderer-start-pos=\"2174\">Under the<strong data-renderer-mark=\"true\"> Specify schedule<\/strong> section, Choose <strong data-renderer-mark=\"true\">On Schedule<\/strong>.<\/p>\n<\/li>\n<li>\n<p data-renderer-start-pos=\"2233\">For<strong data-renderer-mark=\"true\"> Specify<\/strong> <strong data-renderer-mark=\"true\">with <\/strong>choose <strong data-renderer-mark=\"true\">CRON schedule builder<\/strong> and followed by <strong data-renderer-mark=\"true\">Daily<\/strong>. if you want to customize the timing for hourly you can select the <strong data-renderer-mark=\"true\">Hourly <\/strong>type.<\/p>\n<\/li>\n<li>\n<p data-renderer-start-pos=\"2384\">Enter the time when you want to trigger this manager to stop the database. This is using <strong data-renderer-mark=\"true\">UTC time<\/strong>. So you have to provide the time in UTC.<\/p>\n<\/li>\n<li>\n<p data-renderer-start-pos=\"2526\">Click the<strong data-renderer-mark=\"true\"> Apply association only at the next specified cron interval<\/strong>. otherwise it will triggered once this manager gets created.<\/p>\n<\/li>\n<li>\n<p data-renderer-start-pos=\"2659\">Finally click the <strong data-renderer-mark=\"true\">Create association <\/strong>button.<\/p>\n<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/11.webp\" alt=\"Stop and Start RDS Instance Automatically using System Manager State Manager Schedule to stop\" width=\"732\" height=\"861\" class=\"aligncenter wp-image-2585 size-full\" title=\"Stop and Start RDS Instance Automatically using System Manager State Manager Schedule to stop\" srcset=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/11.webp 732w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/11-255x300.webp 255w\" sizes=\"(max-width: 732px) 100vw, 732px\" \/><\/p>\n<h2 id=\"3.-Create-SSM-Association-for-Start-RDS-Instance\" data-renderer-start-pos=\"2710\">Create SSM Association for Start RDS Instance<span role=\"presentation\" class=\"heading-anchor-wrapper\"><\/span><\/h2>\n<ul class=\"ak-ul\" data-indent-level=\"1\">\n<li>\n<p data-renderer-start-pos=\"2762\">Now we have to create an Association document for Start RDS Instance.<\/p>\n<\/li>\n<li>\n<p data-renderer-start-pos=\"2835\">For <strong data-renderer-mark=\"true\">Name <\/strong>enter \u2018<strong data-renderer-mark=\"true\">StartInstanceRDS<\/strong>\u2019.<\/p>\n<\/li>\n<li>\n<p data-renderer-start-pos=\"2873\">Under <strong data-renderer-mark=\"true\">Document <\/strong>section, search \u2018<strong data-renderer-mark=\"true\">AWS-Start<\/strong>\u2019 and choose the \u2018<strong data-renderer-mark=\"true\">AWS-StartRdsInstance<\/strong>\u2019.<\/p>\n<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/12.webp\" alt=\"Stop and Start RDS Instance Automatically using System Manager State Manager Select Document to start\" width=\"660\" height=\"668\" class=\"aligncenter wp-image-2586\" title=\"Stop and Start RDS Instance Automatically using System Manager State Manager Select Document to start\" srcset=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/12.webp 828w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/12-296x300.webp 296w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/12-768x777.webp 768w\" sizes=\"(max-width: 660px) 100vw, 660px\" \/><\/p>\n<ul class=\"ak-ul\" data-indent-level=\"1\">\n<li>\n<p data-renderer-start-pos=\"2963\">For execution choose <strong data-renderer-mark=\"true\">Simple execution<\/strong>.<\/p>\n<\/li>\n<li>\n<p data-renderer-start-pos=\"3005\">Under <strong data-renderer-mark=\"true\">Input Parameters<\/strong> section, for <strong data-renderer-mark=\"true\">InstanceId<\/strong>, you have to provide the name of the RDS instance which you want to stop and start periodically.<\/p>\n<\/li>\n<li>\n<p data-renderer-start-pos=\"3152\">For <strong data-renderer-mark=\"true\">AutomationAssumeRole<\/strong>, select that <strong data-renderer-mark=\"true\">StopStartRebootRDS <\/strong>role.<\/p>\n<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/13.webp\" alt=\"Stop and Start RDS Instance Automatically using System Manager State Manager Select Execution to start\" width=\"765\" height=\"374\" class=\"aligncenter wp-image-2587\" title=\"Stop and Start RDS Instance Automatically using System Manager State Manager Select Execution to start\" srcset=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/13.webp 826w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/13-300x147.webp 300w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/13-768x376.webp 768w\" sizes=\"(max-width: 765px) 100vw, 765px\" \/><\/p>\n<ul class=\"ak-ul\" data-indent-level=\"1\">\n<li>\n<p data-renderer-start-pos=\"3223\">Under the S<strong data-renderer-mark=\"true\">pecify schedule <\/strong>section, Choose <strong data-renderer-mark=\"true\">On Schedule<\/strong>.<\/p>\n<\/li>\n<li>\n<p data-renderer-start-pos=\"3282\">For <strong data-renderer-mark=\"true\">Specify with <\/strong>choose <strong data-renderer-mark=\"true\">CRON schedule builder<\/strong> and followed by <strong data-renderer-mark=\"true\">Daily<\/strong>.<\/p>\n<\/li>\n<li>\n<p data-renderer-start-pos=\"3355\">Enter the time in <strong data-renderer-mark=\"true\">UTC <\/strong>when you want to trigger this manager to start the database.<\/p>\n<\/li>\n<li>\n<p data-renderer-start-pos=\"3441\">Click the <strong data-renderer-mark=\"true\">Apply association only at the next specified cron interval.<\/strong><\/p>\n<\/li>\n<li>\n<p data-renderer-start-pos=\"3514\">Finally click the<strong data-renderer-mark=\"true\"> Create association<\/strong> button.<\/p>\n<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/14.webp\" alt=\"Stop and Start RDS Instance Automatically using System Manager State Manager Schedule to start\" width=\"648\" height=\"756\" class=\"aligncenter wp-image-2588 \" title=\"Stop and Start RDS Instance Automatically using System Manager State Manager Schedule to start\" srcset=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/14.webp 743w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/14-257x300.webp 257w\" sizes=\"(max-width: 648px) 100vw, 648px\" \/><\/p>\n<p>Now you have successfully created Associations for Stop and Start RDS instance.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/15.webp\" alt=\"Stop and Start RDS Instance Automatically using System Manager Associations created\" width=\"1590\" height=\"267\" class=\"aligncenter wp-image-2589 size-full\" title=\"Stop and Start RDS Instance Automatically using System Manager Associations created\" srcset=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/15.webp 1590w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/15-300x50.webp 300w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/15-1024x172.webp 1024w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/15-768x129.webp 768w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/15-1536x258.webp 1536w\" sizes=\"(max-width: 1590px) 100vw, 1590px\" \/><\/p>\n<p>You can check the execution details. For this choose any on of the association and click the <strong data-renderer-mark=\"true\">Execution history <\/strong>section.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/16.webp\" alt=\"Stop and Start RDS Instance Automatically using System Manager Association executions\" width=\"1106\" height=\"430\" class=\"aligncenter wp-image-2590 \" title=\"Stop and Start RDS Instance Automatically using System Manager Association executions\" srcset=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/16.webp 1593w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/16-300x117.webp 300w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/16-1024x398.webp 1024w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/16-768x298.webp 768w, https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/16-1536x597.webp 1536w\" sizes=\"(max-width: 1106px) 100vw, 1106px\" \/><\/p>\n<h2>Conclusion<\/h2>\n<p>Using this simple process will help you to automate your database run timings. And it saves the cost of the databases <span>in dev and test environments when they\u2019re not in use, thereby leading to a compute cost saving<\/span>. <span>However, keep in mind that although we\u2019re stopping the databases, the storage costs for the databases still apply.<\/span><\/p>\n<p>I hope this article is helps you to learn a new thing. If you have any doubts or needs any clarifications, feel free to comment it to below article. We will help you to clarify.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction AWS provides a fully managed Database service called RDS. What does mean the word fully managed. It has every things which are required to run a database in cloud and also we don&#8217;t need to worry about licensing. But there are some things that customers should be manage like availability of the database, choosing [&hellip;]<\/p>\n","protected":false},"author":20,"featured_media":2596,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[2,128],"tags":[439],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Stop and Start RDS Instance Automatically using System Manager to save AWS bill |<\/title>\n<meta name=\"description\" content=\"AWS Systems Manager Automation provides the AWS StopRdsInstance and AWS StartRdsInstance runbooks to stop and start Amazon RDS DB instances.\" \/>\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.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Stop and Start RDS Instance Automatically using System Manager to save AWS bill |\" \/>\n<meta property=\"og:description\" content=\"AWS Systems Manager Automation provides the AWS StopRdsInstance and AWS StartRdsInstance runbooks to stop and start Amazon RDS DB instances.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/\" \/>\n<meta property=\"og:site_name\" content=\"easydeploy.io\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/Jerinrathnam\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-27T12:17:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/How-to-Stop-and-Start-RDS-Instance-Automatically-using-System-Manager-to-save-AWS-bill-1.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"600\" \/>\n\t<meta property=\"og:image:height\" content=\"315\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Jerin Rathnam\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@jerin_rathnam\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jerin Rathnam\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/\"},\"author\":{\"name\":\"Jerin Rathnam\",\"@id\":\"https:\/\/www.easydeploy.io\/blog\/#\/schema\/person\/939543ac3b33fadea8b5115ab9a1280f\"},\"headline\":\"How to Stop and Start RDS Instance Automatically using System Manager to save AWS bill\",\"datePublished\":\"2023-02-27T12:17:39+00:00\",\"dateModified\":\"2023-02-27T12:17:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/\"},\"wordCount\":833,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.easydeploy.io\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/How-to-Stop-and-Start-RDS-Instance-Automatically-using-System-Manager-to-save-AWS-bill-1.webp\",\"keywords\":[\"rds instance\"],\"articleSection\":[\"Amazon Web Services\",\"Cloud Computing\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/\",\"url\":\"https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/\",\"name\":\"How to Stop and Start RDS Instance Automatically using System Manager to save AWS bill |\",\"isPartOf\":{\"@id\":\"https:\/\/www.easydeploy.io\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/How-to-Stop-and-Start-RDS-Instance-Automatically-using-System-Manager-to-save-AWS-bill-1.webp\",\"datePublished\":\"2023-02-27T12:17:39+00:00\",\"dateModified\":\"2023-02-27T12:17:39+00:00\",\"description\":\"AWS Systems Manager Automation provides the AWS StopRdsInstance and AWS StartRdsInstance runbooks to stop and start Amazon RDS DB instances.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/#primaryimage\",\"url\":\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/How-to-Stop-and-Start-RDS-Instance-Automatically-using-System-Manager-to-save-AWS-bill-1.webp\",\"contentUrl\":\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/How-to-Stop-and-Start-RDS-Instance-Automatically-using-System-Manager-to-save-AWS-bill-1.webp\",\"width\":600,\"height\":315,\"caption\":\"RDS Instance\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.easydeploy.io\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Stop and Start RDS Instance Automatically using System Manager to save AWS bill\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.easydeploy.io\/blog\/#website\",\"url\":\"https:\/\/www.easydeploy.io\/blog\/\",\"name\":\"easydeploy.io\",\"description\":\"A Cloud Architect Company\",\"publisher\":{\"@id\":\"https:\/\/www.easydeploy.io\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.easydeploy.io\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.easydeploy.io\/blog\/#organization\",\"name\":\"EasyDeploy Technologies Pvt Ltd\",\"url\":\"https:\/\/www.easydeploy.io\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.easydeploy.io\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2019\/02\/easydeploy.png\",\"contentUrl\":\"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2019\/02\/easydeploy.png\",\"width\":536,\"height\":100,\"caption\":\"EasyDeploy Technologies Pvt Ltd\"},\"image\":{\"@id\":\"https:\/\/www.easydeploy.io\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.easydeploy.io\/blog\/#\/schema\/person\/939543ac3b33fadea8b5115ab9a1280f\",\"name\":\"Jerin Rathnam\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.easydeploy.io\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ca2c2ab4a28d380073334816b42aaa40?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ca2c2ab4a28d380073334816b42aaa40?s=96&d=mm&r=g\",\"caption\":\"Jerin Rathnam\"},\"description\":\"Jerin Rathnam is a proficient DevOps engineer who is dedicated to streamlining software development and deployment processes. He has extensive knowledge of cloud infrastructure, containerization, and CI\/CD pipelines, which enables him to effectively connect development and operations. Jerin specializes in creating numerous Terraform modules for multi-cloud infrastructure and possesses immense expertise in configuring and managing cloud infrastructure. His profound understanding of containerization, along with his experience in orchestration tools like Docker and Kubernetes, further supports his skills as a valuable DevOps engineer.\",\"sameAs\":[\"https:\/\/www.gemjerin.site\",\"https:\/\/www.facebook.com\/Jerinrathnam\",\"https:\/\/www.instagram.com\/gem_jerin_rathnam\/\",\"https:\/\/www.linkedin.com\/in\/jerin-rathnam\/\",\"https:\/\/x.com\/jerin_rathnam\",\"@jerinrathnam\"],\"url\":\"https:\/\/www.easydeploy.io\/blog\/author\/jerin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Stop and Start RDS Instance Automatically using System Manager to save AWS bill |","description":"AWS Systems Manager Automation provides the AWS StopRdsInstance and AWS StartRdsInstance runbooks to stop and start Amazon RDS DB instances.","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.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/","og_locale":"en_GB","og_type":"article","og_title":"How to Stop and Start RDS Instance Automatically using System Manager to save AWS bill |","og_description":"AWS Systems Manager Automation provides the AWS StopRdsInstance and AWS StartRdsInstance runbooks to stop and start Amazon RDS DB instances.","og_url":"https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/","og_site_name":"easydeploy.io","article_author":"https:\/\/www.facebook.com\/Jerinrathnam","article_published_time":"2023-02-27T12:17:39+00:00","og_image":[{"width":600,"height":315,"url":"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/How-to-Stop-and-Start-RDS-Instance-Automatically-using-System-Manager-to-save-AWS-bill-1.webp","type":"image\/webp"}],"author":"Jerin Rathnam","twitter_card":"summary_large_image","twitter_creator":"@jerin_rathnam","twitter_misc":{"Written by":"Jerin Rathnam","Estimated reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/#article","isPartOf":{"@id":"https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/"},"author":{"name":"Jerin Rathnam","@id":"https:\/\/www.easydeploy.io\/blog\/#\/schema\/person\/939543ac3b33fadea8b5115ab9a1280f"},"headline":"How to Stop and Start RDS Instance Automatically using System Manager to save AWS bill","datePublished":"2023-02-27T12:17:39+00:00","dateModified":"2023-02-27T12:17:39+00:00","mainEntityOfPage":{"@id":"https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/"},"wordCount":833,"commentCount":0,"publisher":{"@id":"https:\/\/www.easydeploy.io\/blog\/#organization"},"image":{"@id":"https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/#primaryimage"},"thumbnailUrl":"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/How-to-Stop-and-Start-RDS-Instance-Automatically-using-System-Manager-to-save-AWS-bill-1.webp","keywords":["rds instance"],"articleSection":["Amazon Web Services","Cloud Computing"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/","url":"https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/","name":"How to Stop and Start RDS Instance Automatically using System Manager to save AWS bill |","isPartOf":{"@id":"https:\/\/www.easydeploy.io\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/#primaryimage"},"image":{"@id":"https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/#primaryimage"},"thumbnailUrl":"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/How-to-Stop-and-Start-RDS-Instance-Automatically-using-System-Manager-to-save-AWS-bill-1.webp","datePublished":"2023-02-27T12:17:39+00:00","dateModified":"2023-02-27T12:17:39+00:00","description":"AWS Systems Manager Automation provides the AWS StopRdsInstance and AWS StartRdsInstance runbooks to stop and start Amazon RDS DB instances.","breadcrumb":{"@id":"https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/#primaryimage","url":"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/How-to-Stop-and-Start-RDS-Instance-Automatically-using-System-Manager-to-save-AWS-bill-1.webp","contentUrl":"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2023\/02\/How-to-Stop-and-Start-RDS-Instance-Automatically-using-System-Manager-to-save-AWS-bill-1.webp","width":600,"height":315,"caption":"RDS Instance"},{"@type":"BreadcrumbList","@id":"https:\/\/www.easydeploy.io\/blog\/automate-rds-instance-using-system-manager\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.easydeploy.io\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Stop and Start RDS Instance Automatically using System Manager to save AWS bill"}]},{"@type":"WebSite","@id":"https:\/\/www.easydeploy.io\/blog\/#website","url":"https:\/\/www.easydeploy.io\/blog\/","name":"easydeploy.io","description":"A Cloud Architect Company","publisher":{"@id":"https:\/\/www.easydeploy.io\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.easydeploy.io\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/www.easydeploy.io\/blog\/#organization","name":"EasyDeploy Technologies Pvt Ltd","url":"https:\/\/www.easydeploy.io\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.easydeploy.io\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2019\/02\/easydeploy.png","contentUrl":"https:\/\/www.easydeploy.io\/blog\/wp-content\/uploads\/2019\/02\/easydeploy.png","width":536,"height":100,"caption":"EasyDeploy Technologies Pvt Ltd"},"image":{"@id":"https:\/\/www.easydeploy.io\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.easydeploy.io\/blog\/#\/schema\/person\/939543ac3b33fadea8b5115ab9a1280f","name":"Jerin Rathnam","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.easydeploy.io\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ca2c2ab4a28d380073334816b42aaa40?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ca2c2ab4a28d380073334816b42aaa40?s=96&d=mm&r=g","caption":"Jerin Rathnam"},"description":"Jerin Rathnam is a proficient DevOps engineer who is dedicated to streamlining software development and deployment processes. He has extensive knowledge of cloud infrastructure, containerization, and CI\/CD pipelines, which enables him to effectively connect development and operations. Jerin specializes in creating numerous Terraform modules for multi-cloud infrastructure and possesses immense expertise in configuring and managing cloud infrastructure. His profound understanding of containerization, along with his experience in orchestration tools like Docker and Kubernetes, further supports his skills as a valuable DevOps engineer.","sameAs":["https:\/\/www.gemjerin.site","https:\/\/www.facebook.com\/Jerinrathnam","https:\/\/www.instagram.com\/gem_jerin_rathnam\/","https:\/\/www.linkedin.com\/in\/jerin-rathnam\/","https:\/\/x.com\/jerin_rathnam","@jerinrathnam"],"url":"https:\/\/www.easydeploy.io\/blog\/author\/jerin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.easydeploy.io\/blog\/wp-json\/wp\/v2\/posts\/2591"}],"collection":[{"href":"https:\/\/www.easydeploy.io\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.easydeploy.io\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.easydeploy.io\/blog\/wp-json\/wp\/v2\/users\/20"}],"replies":[{"embeddable":true,"href":"https:\/\/www.easydeploy.io\/blog\/wp-json\/wp\/v2\/comments?post=2591"}],"version-history":[{"count":3,"href":"https:\/\/www.easydeploy.io\/blog\/wp-json\/wp\/v2\/posts\/2591\/revisions"}],"predecessor-version":[{"id":2595,"href":"https:\/\/www.easydeploy.io\/blog\/wp-json\/wp\/v2\/posts\/2591\/revisions\/2595"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.easydeploy.io\/blog\/wp-json\/wp\/v2\/media\/2596"}],"wp:attachment":[{"href":"https:\/\/www.easydeploy.io\/blog\/wp-json\/wp\/v2\/media?parent=2591"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.easydeploy.io\/blog\/wp-json\/wp\/v2\/categories?post=2591"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.easydeploy.io\/blog\/wp-json\/wp\/v2\/tags?post=2591"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}