Skip to content

Instantly share code, notes, and snippets.

View dmattia's full-sized avatar

David Mattia dmattia

  • Transcend.io
  • United States
View GitHub Profile
@dmattia
dmattia / sombra_basic_kubernetes_deployment.tf
Last active February 14, 2025 05:17
Sombra Helm Deployment No LLM
provider "aws" {
region = "eu-west-1"
}
module "vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "~> 5.1.2"
name = "sombra-vpc"
cidr = "10.0.0.0/16"
@dmattia
dmattia / sombra_with_llm_kubernetes_deployment.tf
Last active March 11, 2025 20:05
Sombra Helm Deployment with LLM
provider "aws" {
region = "eu-west-1"
}
module "vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "~> 5.1.2"
name = "sombra-vpc"
cidr = "10.0.0.0/16"