Skip to content

Commit 22acf19

Browse files
Adds support to manage GCP PrivateCA Certificates (#4449) (#2924)
Signed-off-by: Modular Magician <[email protected]>
1 parent 9ff917d commit 22acf19

File tree

7 files changed

+2798
-2
lines changed

7 files changed

+2798
-2
lines changed

.changelog/4449.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:new-resource
2+
`google_privateca_certificate`
3+
```

google-beta/provider.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -799,9 +799,9 @@ func Provider() *schema.Provider {
799799
return provider
800800
}
801801

802-
// Generated resources: 207
802+
// Generated resources: 208
803803
// Generated IAM resources: 108
804-
// Total generated resources: 315
804+
// Total generated resources: 316
805805
func ResourceMap() map[string]*schema.Resource {
806806
resourceMap, _ := ResourceMapWithErrors()
807807
return resourceMap
@@ -1076,6 +1076,7 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
10761076
"google_privateca_certificate_authority_iam_binding": ResourceIamBinding(PrivatecaCertificateAuthorityIamSchema, PrivatecaCertificateAuthorityIamUpdaterProducer, PrivatecaCertificateAuthorityIdParseFunc),
10771077
"google_privateca_certificate_authority_iam_member": ResourceIamMember(PrivatecaCertificateAuthorityIamSchema, PrivatecaCertificateAuthorityIamUpdaterProducer, PrivatecaCertificateAuthorityIdParseFunc),
10781078
"google_privateca_certificate_authority_iam_policy": ResourceIamPolicy(PrivatecaCertificateAuthorityIamSchema, PrivatecaCertificateAuthorityIamUpdaterProducer, PrivatecaCertificateAuthorityIdParseFunc),
1079+
"google_privateca_certificate": resourcePrivatecaCertificate(),
10791080
"google_pubsub_topic": resourcePubsubTopic(),
10801081
"google_pubsub_topic_iam_binding": ResourceIamBinding(PubsubTopicIamSchema, PubsubTopicIamUpdaterProducer, PubsubTopicIdParseFunc),
10811082
"google_pubsub_topic_iam_member": ResourceIamMember(PubsubTopicIamSchema, PubsubTopicIamUpdaterProducer, PubsubTopicIdParseFunc),

0 commit comments

Comments
 (0)