This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ECS Deploy Workflow | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| permissions: | |
| id-token: write # This is required for requesting the JWT | |
| contents: read # This is required for actions/checkout |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ~/.config/ghostty/config | |
| clipboard-read = allow | |
| clipboard-write = allow | |
| copy-on-select = false | |
| window-decoration = auto | |
| window-theme = dark | |
| window-padding-balance = true | |
| window-save-state = always | |
| theme = Dracula | |
| font-size = 14 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # json2hcl.py - Convert JSON to Terraform HCL | |
| import json | |
| import sys | |
| import re | |
| import argparse | |
| from typing import Any, Dict, List, Union | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from pydantic import BaseModel | |
| from pydantic_ai import Agent | |
| from pydantic_ai.models.openai import OpenAIChatModel | |
| from pydantic_ai.providers.ollama import OllamaProvider | |
| ollama_model = OpenAIChatModel( | |
| model_name='llama3.2:latest', | |
| provider=OllamaProvider(base_url='http://localhost:11434/v1'), | |
| ) |
OlderNewer