diff --git a/index.html b/index.html index 4c7e1fb..06a6b82 100644 --- a/index.html +++ b/index.html @@ -188,6 +188,78 @@ output "public_ip" { Drop-in replacement. Fully compatible. Community-driven.

+ +
+

Terraform at scale needs a platform.

+

+ Terraform Enterprise / HCP Terraform — HashiCorp's commercial offering: remote state, RBAC, audit logs
+ Spacelift — GitOps-first CI/CD for Terraform (and OpenTofu)
+ Atlantis — open-source: plan & apply triggered by pull requests
+ env0, Scalr — SaaS alternatives with policy & cost management +

+
+ + +
+

Ansible

+

Your servers are provisioned. Now make them do something.

+
+ + +
+

Push, not pull. SSH, not agents.

+

YAML playbooks run tasks in order, across any number of hosts.
+ No daemon. No certificate authority. Just Python + SSH.
+ Idempotent modules ensure the same playbook can run safely again and again.

+
+ + +
+

# playbook/webserver.yml

+

+- name: Configure web server
+  hosts: webservers
+  become: true
+
+  tasks:
+    - name: Install nginx
+      ansible.builtin.package:
+        name: nginx
+        state: present
+
+    - name: Deploy nginx config
+      ansible.builtin.template:
+        src: nginx.conf.j2
+        dest: /etc/nginx/nginx.conf
+      notify: Restart nginx
+
+  handlers:
+    - name: Restart nginx
+      ansible.builtin.service:
+        name: nginx
+        state: restarted
+    
+
+ + +
+

The community does the heavy lifting.

+

Ansible Galaxy — 10,000+ ready-made roles and collections.
+ Don't write a playbook to install Docker from scratch. Someone already did.
+ Just ansible-galaxy install geerlingguy.docker.

+
+ + +
+

Ansible at scale: open-source vs enterprise.

+

+ AWX — open-source web UI, API, and scheduler for Ansible
+ Ansible Automation Platform (Red Hat) — enterprise version of AWX, with support & integrations
+ Semaphore — lightweight open-source alternative to AWX
+ The core Ansible engine remains Apache 2.0 — truly open-source. +

+
+