Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds ➔
👥 Community & Social
YouTube Security VideosTechLinked: MacOS 27 launch ain't looking so good(23.09.2026 um 21:00 Uhr)
•
YouTube Security VideosNeil Patel: Don't Just Be Right. Be Repeatable. #shorts(23.09.2026 um 20:04 Uhr)
••
YouTube Security VideosMicrosoft Mechanics: How to Share a Copilot Agent With Your Team(23.09.2026 um 20:30 Uhr)
••••
Sicherheitslücken (CVE)USN-8806-1: NetworkManager vulnerability(23.09.2026 um 15:24 Uhr)
•
Sicherheitslücken (CVE)USN-8807-1: Open-iSNS vulnerability(23.09.2026 um 19:07 Uhr)
•
Unix & Linux ServerUSN-8808-1: SQL parse vulnerabilities(23.09.2026 um 20:19 Uhr)
•
YouTube Security VideosTechLinked: MacOS 27 launch ain't looking so good(23.09.2026 um 21:00 Uhr)
•
YouTube Security VideosNeil Patel: Don't Just Be Right. Be Repeatable. #shorts(23.09.2026 um 20:04 Uhr)
••
YouTube Security VideosMicrosoft Mechanics: How to Share a Copilot Agent With Your Team(23.09.2026 um 20:30 Uhr)
••••
Sicherheitslücken (CVE)USN-8806-1: NetworkManager vulnerability(23.09.2026 um 15:24 Uhr)
•
Sicherheitslücken (CVE)USN-8807-1: Open-iSNS vulnerability(23.09.2026 um 19:07 Uhr)
•
Unix & Linux ServerUSN-8808-1: SQL parse vulnerabilities(23.09.2026 um 20:19 Uhr)
•
Intelligence View
⚡ tsecurity.de Intelligence

Your containerized application with IAC on AWS — Pt.1

These days, automation and efficiency are critical in the realm of cloud computing. The administration of your containerized apps may be optimized with AWS Fargate and Infrastructure as Code (IaC). This blog article will walk you through…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

These days, automation and efficiency are critical in the realm of cloud computing. The administration of your containerized apps may be optimized with AWS Fargate and Infrastructure as Code (IaC). This blog article will walk you through the process of utilizing these potent technologies to increase your applications scalability and efficiency.



FARGATE

Amazon’s container computing service, Fargate, allows you to use AWS containers without the need to manage servers.

I have written a blog article regarding Fargate that you may read here.



INTRODUCTION TO INFRASTRUCTURE AS CODE (IAC)

Infra as code is super important when we think about a stable, scalable and prepared infrastructure for any accident. You may use software development methods like code review and continuous testing, as well as version, reuse and share your configuration by describing your infrastructure in configuration files.



I’ve written a blog article about Terraform and Terragrunt, which we’ll be using in this instance.



CONNECTING AWS TO YOUR COMPUTER

With the help of the AWS CLI, you can easily control AWS services from the terminal on your PC. It allows you to use scripts to automate operations and manage a variety of AWS services.



INSTALLATION OF AWS CLI

windows


Go to the official AWS website and download the MSI installation.



Linux

To download the installation package, use curl. Apply the subsequent command:



curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64-2.0.30.zip" -o "awscliv2.zip"

unzip awscliv2.zip

sudo ./aws/install



To confirm if it was installed, run the command:



aws --version



MacOs

Run the installer after downloading it from this link: https://awscli.amazonaws.com/AWSCLIV2-2.0.30.pkg



which aws

aws --version




…………………………………



INSTALLATION OF TERRAFORM AND TERRAGRUNT

TERRAFORM


Linux

First, open your terminal. We’ll use wget or curl to download the latest version of Terraform:



wget https://releases.hashicorp.com/terraform/1.1.0/terraform_1.1.0



Now, if unzip isn’t already installed, let’s install it before unzipping the file:



sudo apt-get install unzip -y

unzip terraform_1.1.0_linux_amd64.zip



In this step, we will move the terraform executable to a directory included in your system PATH, such as /usr/local/bin:



sudo mv terraform /usr/local/bin/



Finally, we’ll check if the installation is legitimate:



terraform -version



Windows



1.Visit the official Terraform website and get the Windows binary that is needed.




  1. Use WinZip, WinRAR or another unzip application, to extract the file.


  2. Put Terraform in the Path System




Click “This Computer” with a right-click, then choose “Properties.”

Select ‘Environment Variables’ after selecting ‘Advanced System Settings’.

Locate the Path variable under ‘System Variables’ and modify it by adding the path of the directory where you unpacked Terraform.




  1. Use the Command Prompt to Confirm Installation:



terraform -version



MacOs

We are going to start installing Homebrew. If you do not yet have Homebrew, you may install it using this command on the terminal:



/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"



Here, we will install the terraform using Brew. Without a terminal, run:



brew tap hashicorp/tap

brew install hashicorp/tap/terraform



Finally, we will check whether everything is well with our installation:



terraform -version



TERRGRUNT

Windows :
You can install Terragrunt on Windows by using Chocolatey :.choco install terragrunt



MacOS : You can install Terragrunt on Mac by using Homebrew :.brew install terragrunt



Linux : Most Linux users are able to use Homebrew : brew install terragrunt. Users of Arch Linux can utilize pacman -S terragruntto install it community-terragrunt.



FreeBSD : You can install Terragrunt on FreeBSD by using Pkg :.pkg install terragrunt



……………………………………



Configure AWS CLI

In this blog article, we will create a new user and configure our credentials. This user here belongs to the adm group, but be careful when it is necessary to give permissions to other people who use your account or who are users of your organization. Adopt the concept of least privilege always. You may read more about IAM on my blog post here.



We navigate to IAM -> Users -> Create User. Once the user is created, we will create the credentials. To do this, log in with your credentials and select Security Credentials -> Access Keys -> Create Access Key.



Remember to copy the credentials exactly as they were created.



cli



After creating the credentials, lets open a terminal and set up the AWS CLI. To do this, type the command below and provide your credentials:



aws configure

cli



To test, simply run a command for any service. Here we will try to list the EC2 instances of the account.



aws ec2 describe-instances



If it returns anything like the code below, it means that it worked. If there is no instance, the code below will be returned; if there is an instance, the information from the GIF conformation will be returned.



{

"Reservations": []

}



……………………………………



Now that the requirements are all up and operational, we can use Terraform and Terragrunt to build our infrastructure.

In part two of this series, let’s see how. See Ya!

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Your containerized application with IAC on AWS — Pt.1

Thematisch verwandte Begriffe: Your, containerized, application, with · 6 Treffer

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-90904 | Joomla Extension - joomshaper.com - Broken Access Control (ACL Bypass) i…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel • Rechts: nächster Artikel • unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel TTP ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger • Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick