Skip to content

Runestone v0.0.1

Latest

Choose a tag to compare

@github-actions github-actions released this 21 Aug 14:10
· 3 commits to main since this release

Runestone v0.0.1

Features

  • 13 AWS Resource Types - Complete coverage for modern cloud applications
  • Stateless Design - No state files to manage
  • Real-time Drift Detection - Continuous monitoring with auto-healing
  • Policy-as-Code - Built-in security and governance
  • DAG-based Orchestration - Intelligent dependency resolution

Supported AWS Resources

  • Storage: S3 Buckets, DynamoDB Tables
  • Compute: EC2 Instances, Lambda Functions
  • Networking: VPC, Subnets, Internet Gateways, Security Groups
  • Database: RDS Instances
  • API: API Gateway
  • Security: IAM Users, Roles, Policies

Installation

Download Binary

Download the appropriate binary for your platform from the assets below.

Install with Go

go install github.com/ataiva-software/runestone@v0.0.1

Quick Start

# Create a simple configuration
cat > infra.yaml << 'YAML'
project: my-app
environment: dev
providers:
  aws:
    region: us-east-1
resources:
  - kind: aws:s3:bucket
    name: my-app-data
    properties:
      versioning: true
      tags:
        Environment: dev
YAML

# Deploy infrastructure
./runestone bootstrap
./runestone preview
./runestone commit

Documentation