-
Notifications
You must be signed in to change notification settings - Fork 427
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Chema
committed
Feb 15, 2022
1 parent
63f2b85
commit 8625741
Showing
5 changed files
with
217 additions
and
0 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,52 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "snowflake_databases Data Source - terraform-provider-snowflake" | ||
subcategory: "" | ||
description: |- | ||
--- | ||
|
||
# snowflake_databases (Data Source) | ||
|
||
|
||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "snowflake_databases" "this" {} | ||
resource "snowflake_database" "backups" { | ||
for_each = { for x in data.snowflake_databases.this.databases: x.name => x } | ||
name = "BACKUP_${each.key}" | ||
comment = "Backup of ${each.key} - ${each.value.comment}" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Optional | ||
|
||
- **id** (String) The ID of this resource. | ||
|
||
### Read-Only | ||
|
||
- **databases** (List of Object) Snowflake databases (see [below for nested schema](#nestedatt--databases)) | ||
|
||
<a id="nestedatt--databases"></a> | ||
### Nested Schema for `databases` | ||
|
||
Read-Only: | ||
|
||
- **comment** (String) | ||
- **created_on** (String) | ||
- **is_current** (Boolean) | ||
- **is_default** (Boolean) | ||
- **name** (String) | ||
- **options** (String) | ||
- **origin** (String) | ||
- **owner** (String) | ||
- **retention_time** (Number) | ||
|
||
|
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,8 @@ | ||
data "snowflake_databases" "this" {} | ||
|
||
resource "snowflake_database" "backups" { | ||
for_each = { for x in data.snowflake_databases.this.databases: x.name => x } | ||
|
||
name = "BACKUP_${each.key}" | ||
comment = "Backup of ${each.key} - ${each.value.comment}" | ||
} |
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,107 @@ | ||
package datasources | ||
|
||
import ( | ||
"database/sql" | ||
"log" | ||
"strconv" | ||
|
||
"github.com/chanzuckerberg/terraform-provider-snowflake/pkg/snowflake" | ||
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" | ||
"github.com/jmoiron/sqlx" | ||
) | ||
|
||
var databasesSchema = map[string]*schema.Schema{ | ||
"databases": { | ||
Type: schema.TypeList, | ||
Computed: true, | ||
Description: "Snowflake databases", | ||
Elem: &schema.Resource{ | ||
Schema: map[string]*schema.Schema{ | ||
"name": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
"comment": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
"owner": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
"is_default": { | ||
Type: schema.TypeBool, | ||
Computed: true, | ||
}, | ||
"is_current": { | ||
Type: schema.TypeBool, | ||
Computed: true, | ||
}, | ||
"origin": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
"retention_time": { | ||
Type: schema.TypeInt, | ||
Computed: true, | ||
}, | ||
"created_on": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
"options": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
}, | ||
}, | ||
}, | ||
} | ||
|
||
// Databases the Snowflake current account resource | ||
func Databases() *schema.Resource { | ||
return &schema.Resource{ | ||
Read: ReadDatabases, | ||
Schema: databasesSchema, | ||
} | ||
} | ||
|
||
// ReadDatabases read the current snowflake account information | ||
func ReadDatabases(d *schema.ResourceData, meta interface{}) error { | ||
db := meta.(*sql.DB) | ||
dbx := sqlx.NewDb(db, "snowflake") | ||
dbs, err := snowflake.ListDatabases(dbx) | ||
if err != nil { | ||
log.Printf("[DEBUG] list databases failed to decode") | ||
d.SetId("") | ||
return nil | ||
} | ||
log.Printf("[DEBUG] list databases: %v", dbs) | ||
d.SetId("databases_read") | ||
databases := []map[string]interface{}{} | ||
for _, db := range dbs { | ||
dbR := map[string]interface{}{} | ||
if !db.DBName.Valid { | ||
continue | ||
} | ||
dbR["name"] = db.DBName.String | ||
dbR["comment"] = db.Comment.String | ||
dbR["owner"] = db.Owner.String | ||
dbR["is_default"] = db.IsDefault.String == "Y" | ||
dbR["is_current"] = db.IsCurrent.String == "Y" | ||
dbR["origin"] = db.Origin.String | ||
dbR["created_on"] = db.CreatedOn.String | ||
dbR["options"] = db.Options.String | ||
dbR["retention_time"] = -1 | ||
if db.RetentionTime.Valid { | ||
v, err := strconv.Atoi(db.RetentionTime.String) | ||
if err == nil { | ||
dbR["retention_time"] = v | ||
} | ||
} | ||
databases = append(databases, dbR) | ||
|
||
} | ||
d.Set("databases", databases) | ||
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,49 @@ | ||
package datasources_test | ||
|
||
import ( | ||
"fmt" | ||
"strings" | ||
"testing" | ||
|
||
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/acctest" | ||
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" | ||
) | ||
|
||
func TestDatabases(t *testing.T) { | ||
databaseName := strings.ToUpper(acctest.RandStringFromCharSet(10, acctest.CharSetAlpha)) | ||
comment := strings.ToUpper(acctest.RandStringFromCharSet(10, acctest.CharSetAlpha)) | ||
resource.ParallelTest(t, resource.TestCase{ | ||
|
||
Providers: providers(), | ||
Steps: []resource.TestStep{ | ||
{ | ||
Config: databases(databaseName, comment), | ||
Check: resource.ComposeTestCheckFunc( | ||
resource.TestCheckResourceAttrSet("data.snowflake_databases.t", "databases.#"), | ||
resource.TestCheckResourceAttr("data.snowflake_databases.t", "databases.#", "1"), | ||
resource.TestCheckResourceAttr("data.snowflake_databases.t", "databases.0.name", databaseName), | ||
resource.TestCheckResourceAttr("data.snowflake_databases.t", "databases.0.comment", comment), | ||
resource.TestCheckResourceAttrSet("data.snowflake_databases.t", "databases.0.created_on"), | ||
resource.TestCheckResourceAttrSet("data.snowflake_databases.t", "databases.0.owner"), | ||
resource.TestCheckResourceAttrSet("data.snowflake_databases.t", "databases.0.retention_time"), | ||
resource.TestCheckResourceAttrSet("data.snowflake_databases.t", "databases.0.options"), | ||
resource.TestCheckResourceAttrSet("data.snowflake_databases.t", "databases.0.origin"), | ||
resource.TestCheckResourceAttrSet("data.snowflake_databases.t", "databases.0.is_current"), | ||
resource.TestCheckResourceAttrSet("data.snowflake_databases.t", "databases.0.is_default"), | ||
), | ||
}, | ||
}, | ||
}) | ||
} | ||
|
||
func databases(databaseName, comment string) string { | ||
return fmt.Sprintf(` | ||
resource snowflake_database "test_database" { | ||
name = "%v" | ||
comment = "%v" | ||
} | ||
data snowflake_databases "t" { | ||
depends_on = [snowflake_database.test_database] | ||
} | ||
`, databaseName, comment) | ||
} |
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