Skip to content

Commit

Permalink
Merge pull request #18 from Real-Life-IaC/fix-kwargs
Browse files Browse the repository at this point in the history
Merge fix-kwargs
  • Loading branch information
andresionek91 authored Dec 30, 2024
2 parents 45c9504 + d1c92f5 commit 2a09497
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 9 deletions.
6 changes: 3 additions & 3 deletions app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>eBook: Real-life IaC with AWS CDK</title>
<meta name="description"
content="Download your exclusive eBook now and dive into the world of Infrastructure as Code (IaC) with 'Real-Life Infrastructure as Code with AWS CDK - From Concept to Deployment: Build Cloud-Native Systems That Work'. Perfect for developers and data engineers, this guide offers practical examples, best practices, and expert insights into building and managing cloud infrastructure using AWS CDK. Whether you're looking to streamline deployments, enhance scalability, or secure your cloud environments, this book equips you with the knowledge to leverage IaC principles effectively. Transform your development workflow and achieve more with less code." />
content="Download your exclusive eBook now and dive into the world of Infrastructure as Code (IaC) with 'Real-Life Infrastructure as Code with AWS CDK - From Concept to Production: Build Cloud-Native Systems That Work'. Perfect for developers and data engineers, this guide offers practical examples, best practices, and expert insights into building and managing cloud infrastructure using AWS CDK. Whether you're looking to streamline deployments, enhance scalability, or secure your cloud environments, this book equips you with the knowledge to leverage IaC principles effectively. Transform your development workflow and achieve more with less code." />
<meta name="keywords"
content="CDK, AWS, AWS CDK, ebook, book, learn CDK, CDK for dummies, Iac with CDK, Infrastructure as Code, Cloud Development Kit, CloudFormation, DevOps, Cloud, IaC, Terraform, Python, Cloud Best Practices" />
<meta name="author" content="André Sionek" />
Expand All @@ -18,15 +18,15 @@
<meta property="og:url" content="https://real-life-iac.com" />
<meta property="og:title" content="eBook: Real-life IaC with AWS CDK" />
<meta property="og:description"
content="Download your exclusive eBook now and dive into the world of Infrastructure as Code (IaC) with 'Real-Life Infrastructure as Code with AWS CDK - From Concept to Deployment: Build Cloud-Native Systems That Work'. Perfect for developers and data engineers, this guide offers practical examples, best practices, and expert insights into building and managing cloud infrastructure using AWS CDK. Whether you're looking to streamline deployments, enhance scalability, or secure your cloud environments, this book equips you with the knowledge to leverage IaC principles effectively. Transform your development workflow and achieve more with less code." />
content="Download your exclusive eBook now and dive into the world of Infrastructure as Code (IaC) with 'Real-Life Infrastructure as Code with AWS CDK - From Concept to Production: Build Cloud-Native Systems That Work'. Perfect for developers and data engineers, this guide offers practical examples, best practices, and expert insights into building and managing cloud infrastructure using AWS CDK. Whether you're looking to streamline deployments, enhance scalability, or secure your cloud environments, this book equips you with the knowledge to leverage IaC principles effectively. Transform your development workflow and achieve more with less code." />
<meta property="og:image" content="https://real-life-iac.com/og-image.png" />
<meta property="og:site_name" content="Real-life Infrastructure as Code with AWS CDK" />

<!-- Twitter metadata -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="eBook: Real-life IaC with AWS CDK" />
<meta name="twitter:description"
content="Download your exclusive eBook now and dive into the world of Infrastructure as Code (IaC) with 'Real-Life Infrastructure as Code with AWS CDK - From Concept to Deployment: Build Cloud-Native Systems That Work'. Perfect for developers and data engineers, this guide offers practical examples, best practices, and expert insights into building and managing cloud infrastructure using AWS CDK. Whether you're looking to streamline deployments, enhance scalability, or secure your cloud environments, this book equips you with the knowledge to leverage IaC principles effectively. Transform your development workflow and achieve more with less code." />
content="Download your exclusive eBook now and dive into the world of Infrastructure as Code (IaC) with 'Real-Life Infrastructure as Code with AWS CDK - From Concept to Production: Build Cloud-Native Systems That Work'. Perfect for developers and data engineers, this guide offers practical examples, best practices, and expert insights into building and managing cloud infrastructure using AWS CDK. Whether you're looking to streamline deployments, enhance scalability, or secure your cloud environments, this book equips you with the knowledge to leverage IaC principles effectively. Transform your development workflow and achieve more with less code." />
<meta name="twitter:image" content="https://real-life-iac.com/og-image.png" />

<!-- Favicon -->
Expand Down
Binary file modified app/public/main-image.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/public/og-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/public/sponsor-image.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed app/public/sponsor-image.png
Binary file not shown.
7 changes: 2 additions & 5 deletions app/src/components/images.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ export function MainImage() {
className="relative w-full rounded-3xl bg-white"
src="/main-image.jpg"
alt="Logo"
width={300} // This will be the maximum width
height={100} // This will be the maximum height
/>
</div>
);
Expand All @@ -21,10 +19,9 @@ export function SponsorImage() {
<div className="mb-8 flex flex-col items-center justify-center md:flex-row">
<Img
className="relative w-full rounded-3xl bg-white"
src="/sponsor-image.png"
src="/sponsor-image.jpg"
alt="Book"
width={300} // This will be the maximum width
height={100} // This will be the maximum height

/>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion app/src/pages/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const Home: React.FC = () => {
<li>Cloud computing concepts and services, including the AWS Well Architected Framework.</li>
<li>How to build a cloud-native software platform using CDK.</li>
<li>Create constructs of code to build your cloud application.</li>
<li>How to create reusable construct libraries.</li>
<li>How to create a microservices architecture with CDK.</li>
</ul>
<p className="text-base leading-8 text-justify">
In most cases, I will not discuss the pros and cons of different approaches or try to convince you to use one tool over another. I assume that you are already familiar with the WHATs and WHYs, and you are reading this book to learn the HOWs. I will share my opinionated best practices, but keep in mind that opinions can change based on new evidence or different contexts. My opinions may also be completely wrong. Keep this in mind while reading.
Expand Down

0 comments on commit 2a09497

Please sign in to comment.