Skip to content

Commit

Permalink
Adds support to manage GCP PrivateCA Certificates (#4449) (#2924)
Browse files Browse the repository at this point in the history
Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
modular-magician authored Feb 3, 2021
1 parent 9ff917d commit 22acf19
Show file tree
Hide file tree
Showing 7 changed files with 2,798 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .changelog/4449.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:new-resource
`google_privateca_certificate`
```
5 changes: 3 additions & 2 deletions google-beta/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -799,9 +799,9 @@ func Provider() *schema.Provider {
return provider
}

// Generated resources: 207
// Generated resources: 208
// Generated IAM resources: 108
// Total generated resources: 315
// Total generated resources: 316
func ResourceMap() map[string]*schema.Resource {
resourceMap, _ := ResourceMapWithErrors()
return resourceMap
Expand Down Expand Up @@ -1076,6 +1076,7 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
"google_privateca_certificate_authority_iam_binding": ResourceIamBinding(PrivatecaCertificateAuthorityIamSchema, PrivatecaCertificateAuthorityIamUpdaterProducer, PrivatecaCertificateAuthorityIdParseFunc),
"google_privateca_certificate_authority_iam_member": ResourceIamMember(PrivatecaCertificateAuthorityIamSchema, PrivatecaCertificateAuthorityIamUpdaterProducer, PrivatecaCertificateAuthorityIdParseFunc),
"google_privateca_certificate_authority_iam_policy": ResourceIamPolicy(PrivatecaCertificateAuthorityIamSchema, PrivatecaCertificateAuthorityIamUpdaterProducer, PrivatecaCertificateAuthorityIdParseFunc),
"google_privateca_certificate": resourcePrivatecaCertificate(),
"google_pubsub_topic": resourcePubsubTopic(),
"google_pubsub_topic_iam_binding": ResourceIamBinding(PubsubTopicIamSchema, PubsubTopicIamUpdaterProducer, PubsubTopicIdParseFunc),
"google_pubsub_topic_iam_member": ResourceIamMember(PubsubTopicIamSchema, PubsubTopicIamUpdaterProducer, PubsubTopicIdParseFunc),
Expand Down
Loading

0 comments on commit 22acf19

Please sign in to comment.