-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3617 from lwander/f-gcp-sql-instance
provider/google: SQL instance & database tests & documentation
- Loading branch information
Showing
35 changed files
with
1,949 additions
and
53 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
package google | ||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/hashicorp/terraform/helper/schema" | ||
|
||
"google.golang.org/api/sqladmin/v1beta4" | ||
) | ||
|
||
func resourceSqlDatabase() *schema.Resource { | ||
return &schema.Resource{ | ||
Create: resourceSqlDatabaseCreate, | ||
Read: resourceSqlDatabaseRead, | ||
Delete: resourceSqlDatabaseDelete, | ||
|
||
Schema: map[string]*schema.Schema{ | ||
"name": &schema.Schema{ | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
"instance": &schema.Schema{ | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
"self_link": &schema.Schema{ | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
}, | ||
} | ||
} | ||
|
||
func resourceSqlDatabaseCreate(d *schema.ResourceData, meta interface{}) error { | ||
config := meta.(*Config) | ||
|
||
database_name := d.Get("name").(string) | ||
instance_name := d.Get("instance").(string) | ||
project := config.Project | ||
|
||
db := &sqladmin.Database{ | ||
Name: database_name, | ||
Instance: instance_name, | ||
} | ||
|
||
op, err := config.clientSqlAdmin.Databases.Insert(project, instance_name, | ||
db).Do() | ||
|
||
if err != nil { | ||
return fmt.Errorf("Error, failed to insert "+ | ||
"database %s into instance %s: %s", database_name, | ||
instance_name, err) | ||
} | ||
|
||
err = sqladminOperationWait(config, op, "Insert Database") | ||
|
||
if err != nil { | ||
return fmt.Errorf("Error, failure waiting for insertion of %s "+ | ||
"into %s: %s", database_name, instance_name, err) | ||
} | ||
|
||
return resourceSqlDatabaseRead(d, meta) | ||
} | ||
|
||
func resourceSqlDatabaseRead(d *schema.ResourceData, meta interface{}) error { | ||
config := meta.(*Config) | ||
|
||
database_name := d.Get("name").(string) | ||
instance_name := d.Get("instance").(string) | ||
project := config.Project | ||
|
||
db, err := config.clientSqlAdmin.Databases.Get(project, instance_name, | ||
database_name).Do() | ||
|
||
if err != nil { | ||
return fmt.Errorf("Error, failed to get"+ | ||
"database %s in instance %s: %s", database_name, | ||
instance_name, err) | ||
} | ||
|
||
d.Set("self_link", db.SelfLink) | ||
d.SetId(instance_name + ":" + database_name) | ||
|
||
return nil | ||
} | ||
|
||
func resourceSqlDatabaseDelete(d *schema.ResourceData, meta interface{}) error { | ||
config := meta.(*Config) | ||
|
||
database_name := d.Get("name").(string) | ||
instance_name := d.Get("instance").(string) | ||
project := config.Project | ||
|
||
op, err := config.clientSqlAdmin.Databases.Delete(project, instance_name, | ||
database_name).Do() | ||
|
||
if err != nil { | ||
return fmt.Errorf("Error, failed to delete"+ | ||
"database %s in instance %s: %s", database_name, | ||
instance_name, err) | ||
} | ||
|
||
err = sqladminOperationWait(config, op, "Delete Database") | ||
|
||
if err != nil { | ||
return fmt.Errorf("Error, failure waiting for deletion of %s "+ | ||
"in %s: %s", database_name, instance_name, err) | ||
} | ||
|
||
return nil | ||
} |
Oops, something went wrong.