initial commit

This commit is contained in:
Chris Kruining 2025-09-25 13:11:28 +00:00
parent b004058d1a
commit 11ba6b863c
5 changed files with 276 additions and 0 deletions

31
app.go Executable file
View file

@ -0,0 +1,31 @@
package app
import (
"context"
"encoding/json"
"fmt"
"strings"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
)
func AppResource_Create(d *schema.ResourceData, m interface{}) error {
// cfg := m.(*Config)
// dyn, err := dynamicClientForConfig(cfg)
// if err != nil {
// return err
// }
// apiVersion := d.Get("api_version").(string)
// kind := d.Get("kind").(string)
}
func AppResource_Read(d *schema.ResourceData, m interface{}) error {
}
func AppResource_Update(d *schema.ResourceData, m interface{}) error {
}
func AppResource_Delete(d *schema.ResourceData, m interface{}) error {
}