Skip to content

Commit 4efdfe8

Browse files
committed
Fix code examples and YAML characterization based on feedback
- Add missing data source declaration in Terraform example - Clarify YAML as configuration format rather than programming language - Improve accuracy and consistency of technical examples
1 parent f6af879 commit 4efdfe8

File tree

1 file changed

+4
-2
lines changed
  • content/blog/infrastructure-as-code-tools

1 file changed

+4
-2
lines changed

content/blog/infrastructure-as-code-tools/index.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,11 +105,11 @@ This guide covers the following infrastructure as code tools and platforms:
105105
License: Apache 2.0 (Open Source)
106106
Best For: Development teams who want to use familiar programming languages for infrastructure
107107

108-
Pulumi IaC represents the next generation of infrastructure as code, enabling teams to use real programming languages like Python, TypeScript, Go, C#, Java, and YAML instead of learning domain-specific languages. This approach provides unprecedented flexibility, powerful abstractions, and seamless integration with existing development workflows.
108+
Pulumi IaC represents the next generation of infrastructure as code, enabling teams to use real programming languages like Python, TypeScript, Go, C#, and Java, plus YAML for simpler configurations, instead of learning domain-specific languages. This approach provides unprecedented flexibility, powerful abstractions, and seamless integration with existing development workflows.
109109

110110
Key Features:
111111

112-
- **Universal language support**: Use Python, TypeScript, Go, C#, Java, or YAML—no new DSL to learn
112+
- **Universal language support**: Use Python, TypeScript, Go, C#, Java, or YAML configurations—no new DSL to learn
113113
- **Any cloud, any architecture**: Deploy to AWS, Azure, Google Cloud, Kubernetes, and 100+ other providers
114114
- **Real programming constructs**: Leverage loops, conditionals, functions, classes, packages, and third-party libraries
115115
- **Superior developer experience**: Full IDE support with IntelliSense, debugging, and refactoring
@@ -183,6 +183,8 @@ Key Features:
183183
Code Example:
184184

185185
```hcl
186+
data "aws_availability_zones" "available" {}
187+
186188
resource "aws_vpc" "main" {
187189
cidr_block = "10.0.0.0/16"
188190

0 commit comments

Comments
 (0)