diff --git a/examples/ssh/aem.tf b/examples/ssh/aem.tf index 12575ba..ba58475 100644 --- a/examples/ssh/aem.tf +++ b/examples/ssh/aem.tf @@ -19,6 +19,6 @@ resource "aem_instance" "single" { } -output "aem_instance_single" { +output "aem_instances" { value = aem_instance.single.instances } diff --git a/internal/provider/instance_resource.go b/internal/provider/instance_resource.go index 4ca7424..ee19cc7 100644 --- a/internal/provider/instance_resource.go +++ b/internal/provider/instance_resource.go @@ -211,12 +211,10 @@ func (r *InstanceResource) Create(ctx context.Context, req resource.CreateReques resp.Diagnostics.AddError("Unable to create AEM instance", fmt.Sprintf("%s", err)) return } - /* TODO systemd and stuff for later if err := ic.launch(); err != nil { resp.Diagnostics.AddError("Unable to launch AEM instance", fmt.Sprintf("%s", err)) return } - */ tflog.Info(ctx, "Created AEM instance resource")