Skip to content

Commit

Permalink
add sql_source_representation_instance (#3186) (#5839)
Browse files Browse the repository at this point in the history
* add sql_source_representation_instance

* exclude ansible/inspec

* requireds, defaults, validations

* typo

Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
modular-magician authored Mar 5, 2020
1 parent 2ee6c9c commit 454dc34
Show file tree
Hide file tree
Showing 7 changed files with 710 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .changelog/3186.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:new-resource
`google_sql_source_representation_instance`
```
5 changes: 3 additions & 2 deletions google/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -511,9 +511,9 @@ func Provider() terraform.ResourceProvider {
return provider
}

// Generated resources: 103
// Generated resources: 104
// Generated IAM resources: 51
// Total generated resources: 154
// Total generated resources: 155
func ResourceMap() map[string]*schema.Resource {
resourceMap, _ := ResourceMapWithErrors()
return resourceMap
Expand Down Expand Up @@ -667,6 +667,7 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
"google_spanner_instance": resourceSpannerInstance(),
"google_spanner_database": resourceSpannerDatabase(),
"google_sql_database": resourceSQLDatabase(),
"google_sql_source_representation_instance": resourceSQLSourceRepresentationInstance(),
"google_storage_bucket_iam_binding": ResourceIamBinding(StorageBucketIamSchema, StorageBucketIamUpdaterProducer, StorageBucketIdParseFunc),
"google_storage_bucket_iam_member": ResourceIamMember(StorageBucketIamSchema, StorageBucketIamUpdaterProducer, StorageBucketIdParseFunc),
"google_storage_bucket_iam_policy": ResourceIamPolicy(StorageBucketIamSchema, StorageBucketIamUpdaterProducer, StorageBucketIdParseFunc),
Expand Down
Loading

0 comments on commit 454dc34

Please sign in to comment.