Skip to content

Commit 12fc5e0

Browse files
fix a typo in datastream (#6575) (#12615)
Signed-off-by: Modular Magician <[email protected]> Signed-off-by: Modular Magician <[email protected]>
1 parent 48f6d5d commit 12fc5e0

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.changelog/6575.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
```release-note:none
2+
```

google/resource_datastream_connection_profile.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ func resourceDatastreamConnectionProfile() *schema.Resource {
8282
ForceNew: true,
8383
Description: `SSH password.`,
8484
Sensitive: true,
85-
ConflictsWith: []string{},
85+
ConflictsWith: []string{"forward_ssh_connectivity.0.private_key"},
8686
},
8787
"port": {
8888
Type: schema.TypeInt,
@@ -96,7 +96,7 @@ func resourceDatastreamConnectionProfile() *schema.Resource {
9696
ForceNew: true,
9797
Description: `SSH private key.`,
9898
Sensitive: true,
99-
ConflictsWith: []string{},
99+
ConflictsWith: []string{"forward_ssh_connectivity.0.password"},
100100
},
101101
},
102102
},

0 commit comments

Comments
 (0)