mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-08 23:23:59 -06:00
7630a585a2
* Improve influxdb provider - reduce public funcs. We should not make things public that don't need to be public - improve tests by verifying remote state - add influxdb_user resource allows you to manage influxdb users: ``` resource "influxdb_user" "admin" { name = "administrator" password = "super-secret" admin = true } ``` and also database specific grants: ``` resource "influxdb_user" "ro" { name = "read-only" password = "read-only" grant { database = "a" privilege = "read" } } ``` * Grant/ revoke admin access properly * Add continuous_query resource see https://docs.influxdata.com/influxdb/v0.13/query_language/continuous_queries/ for the details about continuous queries: ``` resource "influxdb_database" "test" { name = "terraform-test" } resource "influxdb_continuous_query" "minnie" { name = "minnie" database = "${influxdb_database.test.name}" query = "SELECT min(mouse) INTO min_mouse FROM zoo GROUP BY time(30m)" } ```
72 lines
1.4 KiB
Go
72 lines
1.4 KiB
Go
package influxdb
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/hashicorp/terraform/helper/resource"
|
|
"github.com/hashicorp/terraform/terraform"
|
|
"github.com/influxdata/influxdb/client"
|
|
)
|
|
|
|
func TestAccInfluxDBDatabase(t *testing.T) {
|
|
resource.Test(t, resource.TestCase{
|
|
Providers: testAccProviders,
|
|
Steps: []resource.TestStep{
|
|
resource.TestStep{
|
|
Config: testAccDatabaseConfig,
|
|
Check: resource.ComposeTestCheckFunc(
|
|
testAccCheckDatabaseExists("influxdb_database.test"),
|
|
resource.TestCheckResourceAttr(
|
|
"influxdb_database.test", "name", "terraform-test",
|
|
),
|
|
),
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
func testAccCheckDatabaseExists(n string) resource.TestCheckFunc {
|
|
return func(s *terraform.State) error {
|
|
rs, ok := s.RootModule().Resources[n]
|
|
if !ok {
|
|
return fmt.Errorf("Not found: %s", n)
|
|
}
|
|
|
|
if rs.Primary.ID == "" {
|
|
return fmt.Errorf("No database id set")
|
|
}
|
|
|
|
conn := testAccProvider.Meta().(*client.Client)
|
|
|
|
query := client.Query{
|
|
Command: "SHOW DATABASES",
|
|
}
|
|
|
|
resp, err := conn.Query(query)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if resp.Err != nil {
|
|
return resp.Err
|
|
}
|
|
|
|
for _, result := range resp.Results[0].Series[0].Values {
|
|
if result[0] == rs.Primary.Attributes["name"] {
|
|
return nil
|
|
}
|
|
}
|
|
|
|
return fmt.Errorf("Database %q does not exist", rs.Primary.Attributes["name"])
|
|
}
|
|
}
|
|
|
|
var testAccDatabaseConfig = `
|
|
|
|
resource "influxdb_database" "test" {
|
|
name = "terraform-test"
|
|
}
|
|
|
|
`
|