You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: `KRM-style annotations for the resource.`,
62
+
Elem: &schema.Schema{Type: schema.TypeString},
63
+
},
58
64
"containers": {
59
65
Type: schema.TypeList,
60
66
Optional: true,
@@ -544,6 +550,12 @@ A duration in seconds with up to nine fractional digits, ending with 's'. Exampl
544
550
},
545
551
},
546
552
},
553
+
"annotations": {
554
+
Type: schema.TypeMap,
555
+
Optional: true,
556
+
Description: `Unstructured key value map that may be set by external tools to store and arbitrary metadata. They are not queryable and should be preserved when modifying objects. Cloud Run will populate some annotations using 'run.googleapis.com' or 'serving.knative.dev' namespaces. This field follows Kubernetes annotations' namespacing, limits, and rules. More info: https://kubernetes.io/docs/user-guide/annotations`,
557
+
Elem: &schema.Schema{Type: schema.TypeString},
558
+
},
547
559
"binary_authorization": {
548
560
Type: schema.TypeList,
549
561
Optional: true,
@@ -848,6 +860,12 @@ func resourceCloudRunV2ServiceCreate(d *schema.ResourceData, meta interface{}) e
Description: `The externally accessible IPv4 address for the source database server.`,
65
65
},
66
+
"ca_certificate": {
67
+
Type: schema.TypeString,
68
+
Optional: true,
69
+
ForceNew: true,
70
+
Description: `The CA certificate on the external server. Include only if SSL/TLS is used on the external server.`,
71
+
},
72
+
"client_certificate": {
73
+
Type: schema.TypeString,
74
+
Optional: true,
75
+
ForceNew: true,
76
+
Description: `The client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.`,
77
+
},
78
+
"client_key": {
79
+
Type: schema.TypeString,
80
+
Optional: true,
81
+
ForceNew: true,
82
+
Description: `The private key file for the client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.`,
83
+
},
84
+
"dump_file_path": {
85
+
Type: schema.TypeString,
86
+
Optional: true,
87
+
ForceNew: true,
88
+
Description: `A file in the bucket that contains the data from the external server.`,
89
+
},
90
+
"password": {
91
+
Type: schema.TypeString,
92
+
Optional: true,
93
+
ForceNew: true,
94
+
Description: `The password for the replication user account.`,
0 commit comments