Skip to content

Commit 1cbb936

Browse files
modular-magicianEdward Sun
and
Edward Sun
authored
make machine_config.cpu_count updatable (#6868) (#13144)
Co-authored-by: Edward Sun <[email protected]> Signed-off-by: Modular Magician <[email protected]> Signed-off-by: Modular Magician <[email protected]> Co-authored-by: Edward Sun <[email protected]>
1 parent 538b863 commit 1cbb936

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.changelog/6868.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:bug
2+
alloydb: made `machine_config.cpu_count` updatable on `google_alloydb_instance`
3+
```

website/docs/r/alloydb_instance.html.markdown

+7-3
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,10 @@ resource "google_alloydb_instance" "default" {
4646
instance_id = "alloydb-instance"
4747
instance_type = "PRIMARY"
4848
49+
machine_config {
50+
cpu_count = 2
51+
}
52+
4953
depends_on = [google_service_networking_connection.vpc_connection]
5054
}
5155
@@ -190,9 +194,9 @@ In addition to the arguments listed above, the following computed attributes are
190194
This resource provides the following
191195
[Timeouts](/docs/configuration/resources.html#timeouts) configuration options:
192196

193-
- `create` - Default is 10 minutes.
194-
- `update` - Default is 10 minutes.
195-
- `delete` - Default is 10 minutes.
197+
- `create` - Default is 20 minutes.
198+
- `update` - Default is 20 minutes.
199+
- `delete` - Default is 20 minutes.
196200

197201
## Import
198202

0 commit comments

Comments
 (0)