Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[New Resource] TimestreamInfluxDB DB Instance #37963

Merged
merged 24 commits into from
Jul 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
f559520
Add TimestreamInfluxDB DB Instance resource
trevorbonas Jun 13, 2024
3bc8c0f
make fmt
trevorbonas Jun 13, 2024
69ce2db
Fix test Terraform formatting
trevorbonas Jun 13, 2024
7e22191
Fix formatting
trevorbonas Jun 14, 2024
1f3d4d9
Fix linting issues
trevorbonas Jun 14, 2024
9b542f8
Increase minimum db_storage_type storage amount
trevorbonas Jun 14, 2024
3ca3c05
Merge branch 'main' into f-timestreaminfluxdb-db-instance
johnsonaj Jul 29, 2024
9277669
aws_timestreaminfluxdb_db_instance: simplify schema and use autoflex …
johnsonaj Jul 29, 2024
20d198c
aws_timestreaminfluxdb_db_instance: use autoflex in read
johnsonaj Jul 29, 2024
3ea72c0
aws_timestreaminfluxdb_db_instance: use autoflex in update
johnsonaj Jul 29, 2024
b089374
aws_timestreaminfluxdb_db_instance: cleanup
johnsonaj Jul 29, 2024
88d349b
aws_timestreaminfluxdb_db_instance: fmt tests
johnsonaj Jul 29, 2024
37ce7c8
update tests
johnsonaj Jul 30, 2024
9ce48e7
add tags test
johnsonaj Jul 30, 2024
aed858c
cleanup
johnsonaj Jul 30, 2024
eaef3aa
Merge branch 'main' into f-timestreaminfluxdb-db-instance
johnsonaj Jul 30, 2024
afa90e1
add CHANGELOG entry
johnsonaj Jul 30, 2024
40fd4b0
make tests serial
johnsonaj Jul 30, 2024
3320039
make tests serial
johnsonaj Jul 31, 2024
3d7e51e
make tests parallel
johnsonaj Jul 31, 2024
0855b2b
update documentation
johnsonaj Jul 31, 2024
dcb600b
add vpc lock and parallelism to teamcity test
johnsonaj Jul 31, 2024
234f53e
Merge branch 'main' into f-timestreaminfluxdb-db-instance
johnsonaj Jul 31, 2024
94f6fe3
chore: fmt
johnsonaj Jul 31, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/37963.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:new-resource
aws_timestreaminfluxdb_db_instance
```
2 changes: 1 addition & 1 deletion .teamcity/components/generated/services_all.kt
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ val services = mapOf(
"sts" to ServiceSpec("STS (Security Token)"),
"swf" to ServiceSpec("SWF (Simple Workflow)"),
"synthetics" to ServiceSpec("CloudWatch Synthetics", parallelismOverride = 10),
"timestreaminfluxdb" to ServiceSpec("Timestream for InfluxDB"),
"timestreaminfluxdb" to ServiceSpec("Timestream for InfluxDB", vpcLock = true, parallelismOverride = 3),
"timestreamwrite" to ServiceSpec("Timestream Write"),
"transcribe" to ServiceSpec("Transcribe"),
"transfer" to ServiceSpec("Transfer Family", vpcLock = true),
Expand Down
5 changes: 5 additions & 0 deletions internal/generate/teamcity/acctest_services.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,11 @@ service "synthetics" {
parallelism = 10
}

service "timestreaminfluxdb" {
vpc_lock = true
parallelism = 3
}

service "transfer" {
vpc_lock = true
}
Expand Down
Loading
Loading