🎱Overview

Welcome to Resourcely

Resourcely is a configuration platform for defining and deploying cloud infrastructure that meets your expectations, at scale.

How it works

Customize patterns for deploying infrastructure that meets your standards

/// Blueprint for an AWS RDS instance

---
constants:
  __name: "{{ db_name }}_{{ __guid }}"
---

resource "aws_db_instance" "{{ __name }}"  {
  allocated_storage     = "{{ allocated_storage | default: 100 | desc: "DB storage size in GB" }}"
  deletion_protection   = "{{ deletion_protection | desc: "Enables a check before deletion" | default: "true" }}"
  db_name               = "{{ db_name | required: false | desc: "Database name" }}"
  engine                = "{{ engine | desc:  "Database engine type" }}"
  instance_class        = "{{ instance_class | desc: "DB instance class" }}"
}

Why Resourcely?

With Resourcely:

  • unlock developers from productivity burdens

  • free your platform/DevOps/SRE teams

  • speed your time-to-deployment and focus on high-value work

  • stabilize and secure your cloud platform

Blueprints, Guardrails, or both

Blueprints and Guardrails work well together, but they can also be used individually.

Use What are Blueprints on their own to create golden patterns for deploying infrastructure, giving developers guidance to create cloud resources that meet your expectations.

Use What are Guardrails on their own to define policies for your infrastructure, and enforce them as part of your CI.

Discover more

🏃Quickstart💡Key concepts🏍️Tutorials and guides⛓️Integrations

Last updated