-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add resource and data for ovh_dbaas_logs
- Loading branch information
Showing
9 changed files
with
580 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
package ovh | ||
|
||
import ( | ||
"fmt" | ||
"log" | ||
"net/url" | ||
|
||
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" | ||
) | ||
|
||
func dataSourceDbaasLogs() *schema.Resource { | ||
return &schema.Resource{ | ||
Read: func(d *schema.ResourceData, meta interface{}) error { | ||
return dataSourceDbaasLogsRead(d, meta) | ||
}, | ||
Schema: map[string]*schema.Schema{ | ||
"service_name": { | ||
Type: schema.TypeString, | ||
Description: "The service name", | ||
Required: true, | ||
}, | ||
"cluster_type": { | ||
Type: schema.TypeString, | ||
Description: "Cluster type", | ||
Computed: true, | ||
}, | ||
"dedicated_input_pem": { | ||
Type: schema.TypeString, | ||
Description: "PEM for dedicated inputs", | ||
Computed: true, | ||
}, | ||
"archive_allowed_networks": { | ||
Type: schema.TypeSet, | ||
Elem: &schema.Schema{ | ||
Type: schema.TypeString, | ||
}, | ||
Description: "Allowed networks for ARCHIVE flow type", | ||
Computed: true, | ||
}, | ||
"direct_input_allowed_networks": { | ||
Type: schema.TypeSet, | ||
Elem: &schema.Schema{ | ||
Type: schema.TypeString, | ||
}, | ||
Description: "Allowed networks for DIRECT_INPUT flow type", | ||
Computed: true, | ||
}, | ||
"direct_input_pem": { | ||
Type: schema.TypeString, | ||
Description: "PEM for direct inputs", | ||
Computed: true, | ||
}, | ||
"hostname": { | ||
Type: schema.TypeString, | ||
Description: "hostname", | ||
Computed: true, | ||
}, | ||
"is_default": { | ||
Type: schema.TypeBool, | ||
Description: "All content generated by given service will be placed on this cluster", | ||
Computed: true, | ||
}, | ||
"is_unlocked": { | ||
Type: schema.TypeBool, | ||
Description: "Allow given service to perform advanced operations on cluster", | ||
Computed: true, | ||
}, | ||
"query_allowed_networks": { | ||
Type: schema.TypeSet, | ||
Elem: &schema.Schema{ | ||
Type: schema.TypeString, | ||
}, | ||
Description: "Allowed networks for QUERY flow type", | ||
Computed: true, | ||
}, | ||
"region": { | ||
Type: schema.TypeString, | ||
Description: "Data center localization", | ||
Computed: true, | ||
}, | ||
}, | ||
} | ||
} | ||
|
||
func dbaasGetClusterID(config *Config, serviceName string) (string, error) { | ||
res := []string{} | ||
|
||
endpoint := fmt.Sprintf( | ||
"/dbaas/logs/%s/cluster", | ||
url.PathEscape(serviceName), | ||
) | ||
|
||
if err := config.OVHClient.Get(endpoint, &res); err != nil { | ||
return "", fmt.Errorf("Error calling GET %s:\n\t %q", endpoint, err) | ||
} | ||
|
||
return res[0], nil | ||
} | ||
|
||
func dataSourceDbaasLogsRead(d *schema.ResourceData, meta interface{}) error { | ||
config := meta.(*Config) | ||
|
||
serviceName := d.Get("service_name").(string) | ||
|
||
log.Printf("[DEBUG] Will read dbaas logs cluster %s", serviceName) | ||
|
||
cluster_id, err := dbaasGetClusterID(config, serviceName) | ||
|
||
if err != nil { | ||
return fmt.Errorf("Error fetching info for %s:\n\t %q", serviceName, err) | ||
} | ||
|
||
d.SetId(cluster_id) | ||
|
||
endpoint := fmt.Sprintf( | ||
"/dbaas/logs/%s/cluster/%s", | ||
url.PathEscape(serviceName), | ||
url.PathEscape(cluster_id), | ||
) | ||
|
||
res := map[string]interface{}{} | ||
if err := config.OVHClient.Get(endpoint, &res); err != nil { | ||
return fmt.Errorf("Error calling GET %s:\n\t %q", endpoint, err) | ||
} | ||
|
||
d.Set("archive_allowed_networks", res["archiveAllowedNetworks"]) | ||
d.Set("cluster_type", res["clusterType"]) | ||
d.Set("dedicated_input_pem", res["dedicatedInputPEM"]) | ||
d.Set("direct_input_allowed_networks", res["directInputAllowedNetworks"]) | ||
d.Set("direct_input_pem", res["directInputPEM"]) | ||
d.Set("hostname", res["hostname"]) | ||
d.Set("is_default", res["isDefault"]) | ||
d.Set("is_unlocked", res["isUnlocked"]) | ||
d.Set("query_allowed_networks", res["queryAllowedNetworks"]) | ||
d.Set("region", res["region"]) | ||
|
||
return nil | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
package ovh | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
"testing" | ||
|
||
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" | ||
) | ||
|
||
const testAccDataSourceDbaasLogs_dedicated = ` | ||
data "ovh_dbaas_logs" "ldp" { | ||
service_name = "%s" | ||
} | ||
` | ||
|
||
func TestAccDataSourceDbaasLogs_dedicated(t *testing.T) { | ||
serviceName := os.Getenv("OVH_DBAAS_LOGS_SERVICE_TEST") | ||
|
||
config := fmt.Sprintf( | ||
testAccDataSourceDbaasLogs_dedicated, | ||
serviceName, | ||
) | ||
|
||
resource.Test(t, resource.TestCase{ | ||
PreCheck: func() { testAccPreCheckDbaasLogs(t) }, | ||
|
||
Providers: testAccProviders, | ||
Steps: []resource.TestStep{ | ||
{ | ||
Config: config, | ||
Check: resource.ComposeTestCheckFunc( | ||
resource.TestCheckResourceAttr( | ||
"data.ovh_dbaas_logs.ldp", | ||
"service_name", | ||
serviceName, | ||
), | ||
), | ||
}, | ||
}, | ||
}) | ||
} |
This file contains 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
This file contains 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
Oops, something went wrong.