Skip to content

Instantly share code, notes, and snippets.

View kajogo777's full-sized avatar

George kajogo777

View GitHub Profile
@kajogo777
kajogo777 / main.tf
Last active November 30, 2023 09:53
TF code for HI Studio Demo
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "5.0.0"
}
}
}
resource "aws_eks_cluster" "main" {
@kajogo777
kajogo777 / config.cue
Created March 22, 2023 22:42
PoC for applying AST transformations to CUE files, the transformations themselves are written in CUE
package main
patch: {
pattern: {
abc: string
a: int
}
result: {
abc: pattern.abc
id: "id-\(pattern.a*2)"