0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

閉鎖環境にてCloudFormationを実行するEC2インスタンスを構築しよう

Last updated at Posted at 2023-06-11

はじめに

インターネットに接続できない閉鎖環境で、CloudFormationを実行するEC2を構築する。
Direct Connectを利用したネットワーク環境を想定し、オンプレミスとAWS環境が既に構築されているものとする。

AWS リソース構築内容

  1. EC2

    • EC2インスタンス (Amazon Linux 2)
    • セキュリティグループ (22ポート開放)
    • IAMロール (AdministratorAccess)
    • キーペア
  2. VPCエンドポイント

    • Interface (cloudformation)
    • セキュリティグループ (443ポート開放)
    • プライベートサブネットを指定

AWS CLIの実行方法

    aws cloudformation create-stack \
    --stack-name ${SYSTEM_NAME}} \
    --template-body file://./${Template}.yml \
    --endpoint-url https://${END_PONT_DNS}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?