<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: miyuki_samitani</title>
    <description>The latest articles on DEV Community by miyuki_samitani (@miyuki_samitani).</description>
    <link>https://dev.to/miyuki_samitani</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F942727%2F07ab49db-e184-44e6-8183-efca3323532a.jpeg</url>
      <title>DEV Community: miyuki_samitani</title>
      <link>https://dev.to/miyuki_samitani</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/miyuki_samitani"/>
    <language>en</language>
    <item>
      <title>What is Security Hub?</title>
      <dc:creator>miyuki_samitani</dc:creator>
      <pubDate>Fri, 21 Oct 2022 13:55:19 +0000</pubDate>
      <link>https://dev.to/miyuki_samitani/what-is-security-hub-a06</link>
      <guid>https://dev.to/miyuki_samitani/what-is-security-hub-a06</guid>
      <description>&lt;h2&gt;
  
  
  Image before study
&lt;/h2&gt;

&lt;p&gt;I don't know much about it except that it's an AWS service.&lt;/p&gt;

&lt;h2&gt;
  
  
  Research
&lt;/h2&gt;

&lt;h3&gt;
  
  
  What is Security Hub?
&lt;/h3&gt;

&lt;p&gt;It is a service that checks and centrally manages AWS services.&lt;br&gt;
There are various AWS services, but it is difficult to check each service one by one.&lt;br&gt;
Therefore, the Security Hub aggregates security alerts for AWS services and allows you to view them on a single management screen.&lt;br&gt;
Security Hub is a service that aggregates security alerts for AWS services and allows you to view them on a single management screen.&lt;/p&gt;

&lt;p&gt;Currently, the target services are as follows&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Amazon GardDuty&lt;/li&gt;
&lt;li&gt;Amazon Inspector&lt;/li&gt;
&lt;li&gt;AWS System Manager&lt;/li&gt;
&lt;li&gt;AWS Health&lt;/li&gt;
&lt;li&gt;AWS config&lt;/li&gt;
&lt;li&gt;AWS Firewall Manager&lt;/li&gt;
&lt;li&gt;AWS IAM Access Analyzer&lt;/li&gt;
&lt;li&gt;Amazon Macie&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Benefits of the Security Hub
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Data Aggregation&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The security checks of the services listed above can be viewed in a single Security Hub.&lt;br&gt;
This saves you the time and effort of visiting each service.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Automated security checks&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The Security Hub can also perform compliance checks.&lt;br&gt;
You can automatically check for compliance with certain standards, such as PCI DSS.&lt;/p&gt;

&lt;h3&gt;
  
  
  Security Hub Precautions
&lt;/h3&gt;

&lt;p&gt;There are a few things to keep in mind when using the Security Hub.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;AWS Config must be enabled for security checks.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;AWS Config must be enabled as it will be used as data.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;It must be enabled on a region-by-region basis.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Security Hub only processes data for the region of interest.&lt;br&gt;
If you want to see several regions, you need to enable it for each region.&lt;/p&gt;

&lt;h2&gt;
  
  
  Image after study
&lt;/h2&gt;

&lt;p&gt;I was looking at it for a while and thought it was similar to TRUSTED ADVISER.&lt;br&gt;
I wonder if this one is more specialized in compliance and security?&lt;br&gt;
Well, I guess there are some parts that are covered.&lt;/p&gt;

</description>
      <category>aws</category>
      <category>beginners</category>
      <category>security</category>
    </item>
    <item>
      <title>What is Design for Failure?</title>
      <dc:creator>miyuki_samitani</dc:creator>
      <pubDate>Thu, 20 Oct 2022 12:09:42 +0000</pubDate>
      <link>https://dev.to/miyuki_samitani/what-is-design-for-failure-40jp</link>
      <guid>https://dev.to/miyuki_samitani/what-is-design-for-failure-40jp</guid>
      <description>&lt;h2&gt;
  
  
  Pre-study image
&lt;/h2&gt;

&lt;p&gt;Is it a design for failure kind of story?&lt;/p&gt;

&lt;h2&gt;
  
  
  Study
&lt;/h2&gt;

&lt;h3&gt;
  
  
  What is Design for Failure?
&lt;/h3&gt;

&lt;p&gt;Design for Failure refers to the concept of designing a system based on the assumption that failures will occur.&lt;br&gt;
Servers can fail, AZ/region things can fail.&lt;br&gt;
The idea is to improve the availability of the service by taking countermeasures in case of failures.&lt;/p&gt;

&lt;h3&gt;
  
  
  How to realize Design for Failure
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Elimination of SPOFs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;To improve availability, it is important not to create single-point-of-failure (SPOF).&lt;br&gt;
By configuring the system in an HA configuration or, in the case of AWS, in a multi-AZ, multi-region configuration, it is possible to avoid SPOFs at a single point of failure.&lt;br&gt;
This is because services can continue to operate even if an entire AZ or region fails.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Monitoring&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Service monitoring for early detection of service failures, resource monitoring to detect performance degradation, etc.&lt;br&gt;
It is necessary to set up constant monitoring of logs and metrics in the service for early detection and early recovery.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Recovery Methods&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;When a failure occurs and the client is affected, how to recover?&lt;br&gt;
It is possible to recover early by deciding in advance how to move within the organization and what recovery methods to use when a failure occurs and clients are affected.&lt;/p&gt;

&lt;h2&gt;
  
  
  Image after study
&lt;/h2&gt;

&lt;p&gt;SPOF is indeed ・・・・.&lt;br&gt;
Basically, it means you have to think of the server as something that dies.&lt;/p&gt;

</description>
      <category>failure</category>
      <category>beginners</category>
    </item>
    <item>
      <title>What is Amazon Detective?</title>
      <dc:creator>miyuki_samitani</dc:creator>
      <pubDate>Tue, 18 Oct 2022 12:49:12 +0000</pubDate>
      <link>https://dev.to/miyuki_samitani/what-is-amazon-detective-49pb</link>
      <guid>https://dev.to/miyuki_samitani/what-is-amazon-detective-49pb</guid>
      <description>&lt;h1&gt;
  
  
  What is Amazon Detective?
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Pre-study image
&lt;/h2&gt;

&lt;p&gt;I feel like I've never heard of it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Research
&lt;/h2&gt;

&lt;h3&gt;
  
  
  What is Amazon Detective?
&lt;/h3&gt;

&lt;p&gt;It will be a service to help analyze and investigate the cause of security issues or suspicious activity in applications on AWS.&lt;br&gt;
Since Detective means detective, this service monitors, investigates and analyzes the cause of the problem like a detective.&lt;/p&gt;

&lt;p&gt;Detective collects the following logs and analyzes the information.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;cloudtrail logs&lt;/li&gt;
&lt;li&gt;vpc flow log&lt;/li&gt;
&lt;li&gt;GuardDuty&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Recommended Conditions
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;aws cli must be 1.16.303 or higher&lt;/li&gt;
&lt;li&gt;Amazon GuardDuty must be enabled

&lt;ul&gt;
&lt;li&gt;Must be enabled on master account&lt;/li&gt;
&lt;li&gt;Must wait 48 hours after activation &lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;Amazon GuardDuty's cloudwatch notifications are every 6 hours, so we'll set them to 15 minutes.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Use Cases
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Investigate the impact of a security issue&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Check credentials in case of compromise, API calls from malicious IP addresses, etc.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;File Identification&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Scan for files that behave suspiciously like malware on EC2.&lt;/p&gt;

&lt;h2&gt;
  
  
  Image after study
&lt;/h2&gt;

&lt;p&gt;Basically, I think of it as information gathering and analysis.&lt;br&gt;
It seems like we can see where the suspicious IPs are accessing from.&lt;/p&gt;

</description>
      <category>aws</category>
      <category>beginners</category>
      <category>detective</category>
    </item>
    <item>
      <title>What is Landing Zone?</title>
      <dc:creator>miyuki_samitani</dc:creator>
      <pubDate>Mon, 17 Oct 2022 13:19:26 +0000</pubDate>
      <link>https://dev.to/miyuki_samitani/what-is-landing-zone-3mad</link>
      <guid>https://dev.to/miyuki_samitani/what-is-landing-zone-3mad</guid>
      <description>&lt;h2&gt;
  
  
  Pre-study image
&lt;/h2&gt;

&lt;p&gt;You may have never heard of it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Research
&lt;/h2&gt;

&lt;h3&gt;
  
  
  What is a Landing Zone?
&lt;/h3&gt;

&lt;p&gt;Landing Zone is a mechanism to deploy accounts created based on AWS best practices.&lt;br&gt;
Landing Zone is not a service but a mechanism.&lt;br&gt;
Landing Zone is not a service, but a mechanism to maintain a certain level of security for a large number of accounts.&lt;/p&gt;

&lt;h3&gt;
  
  
  Landing Zone Features
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Create an account with all necessary initial settings completed&lt;/li&gt;
&lt;li&gt;Issue administrative privileges, creating permissions to manage accounts&lt;/li&gt;
&lt;li&gt;Manage account access via SSO&lt;/li&gt;
&lt;li&gt;Ensure network baselines are in place&lt;/li&gt;
&lt;li&gt;Centrally store AWS logs&lt;/li&gt;
&lt;li&gt;Install guardrails&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  How to use the Landing Zone
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Using Control Tower&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Control Tower is an easy to set up Landing Zone implementation.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Implement on your own&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Use Organizations, config, etc. to build your own.&lt;br&gt;
It can be customized freely, but it is difficult to set up.&lt;/p&gt;

&lt;h2&gt;
  
  
  Image after study
&lt;/h2&gt;

&lt;p&gt;It feels more like a Control Tower feature...&lt;br&gt;
Is that right?&lt;/p&gt;

</description>
      <category>landingzone</category>
      <category>aws</category>
      <category>beginners</category>
    </item>
    <item>
      <title>What is IPAM?</title>
      <dc:creator>miyuki_samitani</dc:creator>
      <pubDate>Mon, 17 Oct 2022 13:17:13 +0000</pubDate>
      <link>https://dev.to/miyuki_samitani/what-is-ipam-joc</link>
      <guid>https://dev.to/miyuki_samitani/what-is-ipam-joc</guid>
      <description>&lt;h2&gt;
  
  
  Pre-study image
&lt;/h2&gt;

&lt;p&gt;I've seen the word on the AWS website, but I don't know what it is.&lt;br&gt;
Is it related to IP address?&lt;/p&gt;

&lt;h2&gt;
  
  
  Research
&lt;/h2&gt;

&lt;h3&gt;
  
  
  What is IPAM?
&lt;/h3&gt;

&lt;p&gt;IPAM stands for IP Address Management.&lt;br&gt;
In Japanese, it is called IP address management.&lt;/p&gt;

&lt;p&gt;IPAM refers to the centralized management of IP addresses in a network and software for such management.&lt;br&gt;
It collects IP addresses in cooperation with DHCP servers, DNS servers, etc. that exist in the network, and&lt;br&gt;
The DHCP server systematically allocates IP addresses.&lt;/p&gt;

&lt;p&gt;In the past, when IP addresses were planned, planning was done using Excel.&lt;br&gt;
When changes were made, modifications were often made.&lt;br&gt;
However, this was sometimes unusable due to omissions or loss of tracking of work.&lt;br&gt;
IPAM will do that automatically.&lt;/p&gt;

&lt;h2&gt;
  
  
  Image after study
&lt;/h2&gt;

&lt;p&gt;It's definitely going to be in an Excel table or something... it's not going to be usable. 。。。。&lt;/p&gt;

</description>
      <category>ipam</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Examined cross-account connectivity for AWS.</title>
      <dc:creator>miyuki_samitani</dc:creator>
      <pubDate>Mon, 17 Oct 2022 13:15:56 +0000</pubDate>
      <link>https://dev.to/miyuki_samitani/examined-cross-account-connectivity-for-aws-15bc</link>
      <guid>https://dev.to/miyuki_samitani/examined-cross-account-connectivity-for-aws-15bc</guid>
      <description>&lt;h2&gt;
  
  
  Pre-study image
&lt;/h2&gt;

&lt;p&gt;What was it? I don't have a quick answer.&lt;br&gt;
I think it was something about doing something with users of different accounts.&lt;/p&gt;

&lt;h2&gt;
  
  
  Research
&lt;/h2&gt;

&lt;h3&gt;
  
  
  What is AWS Cross Account Connectivity?
&lt;/h3&gt;

&lt;p&gt;It is to allow one account to handle the resources of two or more accounts.&lt;br&gt;
If you have two, it is also called a multi-account connection.&lt;/p&gt;

&lt;p&gt;You may think that all you have to do is to re-login to your account.&lt;br&gt;
However, depending on the environment, it may be necessary to separate the accounts for production and development, or to connect to another company's AWS account.&lt;br&gt;
In such cases, a cross-account connection allows you to connect simply by granting permission to your existing account without having to create a new one.&lt;/p&gt;

&lt;h3&gt;
  
  
  What kind of configuration will be used?
&lt;/h3&gt;

&lt;p&gt;The use case is as follows.&lt;br&gt;
User A exists in one account.&lt;br&gt;
Another user A needs to be able to connect to the production environment, the development environment, and another company's environment.&lt;br&gt;
In each environment, configure IAM roles as follows&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Production environment

&lt;ul&gt;
&lt;li&gt;Assign user A read access to the production log bucket&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;Development environment

&lt;ul&gt;
&lt;li&gt;Assign read permission of the development log bucket to user A&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;Other company environment

&lt;ul&gt;
&lt;li&gt;Assign all EC2 operation privileges to user A&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Then, user A remains user A and only needs to perform the switch role&lt;br&gt;
read permission for the production log bucket in the production environment, read permission for the development log bucket in the development environment, and all operating privileges for EC2 in other companies' environments&lt;br&gt;
User A can obtain read access to production log buckets in the production environment, read access to development log buckets in the development environment, and all EC2 operations in other environments.&lt;/p&gt;

&lt;h3&gt;
  
  
  Difference between switch roles and cross account connections
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Cross Account.

&lt;ul&gt;
&lt;li&gt;Allowing two or more accounts to handle resources&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;Switch Roles

&lt;ul&gt;
&lt;li&gt;To change to another authority (role).&lt;/li&gt;
&lt;li&gt;Commonly used to switch to a role of a different account when handling resources of a different account.&lt;/li&gt;
&lt;li&gt;It is not about logging in to a different account, but about switching to a &lt;code&gt;role&lt;/code&gt; of a different account.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Image after study
&lt;/h2&gt;

&lt;p&gt;Switching roles is not just a login.&lt;/p&gt;

</description>
      <category>aws</category>
      <category>beginners</category>
      <category>crossaccount</category>
    </item>
    <item>
      <title>What is Hyper-V?</title>
      <dc:creator>miyuki_samitani</dc:creator>
      <pubDate>Fri, 14 Oct 2022 03:40:45 +0000</pubDate>
      <link>https://dev.to/miyuki_samitani/what-is-hyper-v-hap</link>
      <guid>https://dev.to/miyuki_samitani/what-is-hyper-v-hap</guid>
      <description>&lt;h2&gt;
  
  
  Pre-study image
&lt;/h2&gt;

&lt;p&gt;Virtualization application-like?&lt;/p&gt;

&lt;h2&gt;
  
  
  Investigation
&lt;/h2&gt;

&lt;h3&gt;
  
  
  What is Hyper-V?
&lt;/h3&gt;

&lt;p&gt;Read as Hyper-V, it refers to Microsoft's hypervisor virtualization software.&lt;br&gt;
It refers to a method of running virtualization software by installing it directly on a server.&lt;br&gt;
On a virtual machine, there are Windows Server systems, Windows for clients, some linux, etc.&lt;/p&gt;

&lt;h3&gt;
  
  
  Are there other hypervisor virtualization software besides Hyper-V?
&lt;/h3&gt;

&lt;p&gt;The following are the most commonly used&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;VMware ESXi&lt;/li&gt;
&lt;li&gt;Hyper-V&lt;/li&gt;
&lt;li&gt;Xen&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Image after study
&lt;/h2&gt;

&lt;p&gt;Xen's friends?&lt;br&gt;
I'm starting to understand what kind of grouping it is.&lt;/p&gt;

</description>
      <category>virtualization</category>
      <category>beginners</category>
    </item>
    <item>
      <title>What is E2E?</title>
      <dc:creator>miyuki_samitani</dc:creator>
      <pubDate>Thu, 13 Oct 2022 13:56:00 +0000</pubDate>
      <link>https://dev.to/miyuki_samitani/what-is-e2e-3ilg</link>
      <guid>https://dev.to/miyuki_samitani/what-is-e2e-3ilg</guid>
      <description>&lt;h2&gt;
  
  
  Image before study
&lt;/h2&gt;

&lt;p&gt;I don't know&lt;/p&gt;

&lt;h2&gt;
  
  
  Study
&lt;/h2&gt;

&lt;h3&gt;
  
  
  What is E2E?
&lt;/h3&gt;

&lt;p&gt;It stands for end to end.&lt;br&gt;
In IT, it often refers to the entire pathway connecting two parties in communication.&lt;/p&gt;

&lt;h3&gt;
  
  
  End-to-end principle
&lt;/h3&gt;

&lt;p&gt;One of the network design concepts is the `end-to-end principle.&lt;br&gt;
This means that advanced processing such as communication control and error detection is done in the end system, while simple processing and relaying is done on the network path.&lt;br&gt;
The end-to-end principle is that advanced processes such as communication control and error detection are performed by the end systems, and only simple processing and relaying are performed on the network paths.&lt;/p&gt;

&lt;p&gt;Another related term is `E2EE (end to end encryption)&lt;br&gt;
messages, etc., are all encrypted from one end to the other.&lt;br&gt;
This encryption method is highly anonymous because only the sender and receiver can view the message.&lt;/p&gt;

&lt;h2&gt;
  
  
  Image after study
&lt;/h2&gt;

&lt;p&gt;I figured this one out when I thought about it!&lt;br&gt;
But the thought of advanced processing at the end wasn't so much as a recognition, so I'll keep it in mind.&lt;/p&gt;

</description>
      <category>e2e</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
