Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commiteb1fc2e

Browse files
committed
Updates postgres_ai version to 0.10
Updates the default postgres_ai version.Includes a fix to the SSH tunnel command in the outputs.
1 parent3683ba2 commiteb1fc2e

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

‎terraform/aws/QUICKSTART.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Uncomment and set all required parameters:
3737

3838
Optional parameters:
3939
-`grafana_bind_host` - Grafana port binding (defaults to`"127.0.0.1:"` for SSH tunnel)
40-
-`postgres_ai_version` - git branch/tag (defaults to "0.9")
40+
-`postgres_ai_version` - git branch/tag (defaults to "0.10")
4141

4242
##Add monitoring instances
4343

‎terraform/aws/README.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ grafana_password = "YourSecurePassword123!"
6161
# OPTIONAL (have defaults)
6262
postgres_ai_api_key = "your-api-key" # For uploading reports
6363
enable_demo_db = false # Demo database (default: false)
64-
postgres_ai_version = "0.9"# Git branch/tag (default: "0.9")
64+
postgres_ai_version = "0.10" # Git branch/tag (default: "0.10")
6565
bind_host = "127.0.0.1:" # Internal services on localhost (default, most secure)
6666
# bind_host = "" # OR: Bind to all interfaces
6767
grafana_bind_host = "127.0.0.1:" # Grafana on localhost only (default, use SSH tunnel)
@@ -97,7 +97,7 @@ grafana_password = "SecurePassword123!"
9797
# OPTIONAL
9898
postgres_ai_api_key = "your-api-key"
9999
enable_demo_db = false
100-
postgres_ai_version = "0.9"
100+
postgres_ai_version = "0.10"
101101
bind_host = "127.0.0.1:" # Default
102102
grafana_bind_host = "127.0.0.1:" # Default
103103

‎terraform/aws/outputs.tf‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ output "grafana_access_hint" {
4242
Your configuration uses SSH tunnel for security.
4343
4444
Step 1: Create SSH tunnel
45-
ssh -i ~/.ssh/${var.ssh_key_name}.pem -L 3000:localhost:3000 ubuntu@${var.use_elastic_ip?aws_eip.main[0].public_ip:aws_instance.main.public_ip}
45+
ssh -i ~/.ssh/${var.ssh_key_name}.pem -NL 3000:localhost:3000 ubuntu@${var.use_elastic_ip?aws_eip.main[0].public_ip:aws_instance.main.public_ip}
4646
4747
Step 2: Open browser
4848
http://localhost:3000

‎terraform/aws/terraform.tfvars.example‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
# -------------------------
5656

5757
# postgres_ai version (optional, defaults to actual)
58-
# postgres_ai_version = "0.9" # branch or specific tag like "0.9"
58+
# postgres_ai_version = "0.10" # branch or specific tag like "0.10"
5959

6060
# PostgreSQL instances to monitor (optional, can be empty for initial setup)
6161
# monitoring_instances = [

‎terraform/aws/variables.tf‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ variable "enable_demo_db" {
8282
variable"postgres_ai_version" {
8383
description="postgres_ai version (git tag or branch)"
8484
type=string
85-
default="0.9"
85+
default="0.10"
8686
}
8787

8888
variable"bind_host" {

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp