Skip to content

Commit 4d71af1

Browse files
committed
final adjustments for release
1 parent 628f77e commit 4d71af1

File tree

10 files changed

+9
-16
lines changed

10 files changed

+9
-16
lines changed

pgFirstAid.sql

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1096,7 +1096,6 @@ cross join lateral
10961096
5 as severity_order
10971097
from
10981098
ls;
1099-
11001099
exception
11011100
when insufficient_privilege then
11021101
insert
@@ -1110,16 +1109,10 @@ when insufficient_privilege then
11101109
'Unable to check log file sizes - insufficient privileges' as issue_description,
11111110
'Permission denied for pg_ls_dir' as current_value,
11121111
'If this is a managed instance (ex:AWS RDS), you will not be able to view this information from SQL. For RDS, use AWS CLI: aws rds describe-db-log-files --db-instance-identifier <instance-name>. Otherwise, grant pg_read_server_files role or run as superuser to enable this check.' as recommended_action,
1113-
<<<<<<< HEAD
11141112
'For AWS Aurora/RDS: https://docs.aws.amazon.com/cli/latest/reference/rds/describe-db-log-files.html /
11151113
For GCP Cloud SQL: https://docs.cloud.google.com/sql/docs/postgres/logging /
11161114
For Azure Database for PostgreSQL: https://learn.microsoft.com/en-us/cli/azure/postgres/flexible-server/server-logs?view=azure-cli-latest
11171115
' as documentation_link,
1118-
=======
1119-
'https://www.postgresql.org/docs/current/functions-admin.html /
1120-
For AWS RDS: https://docs.aws.amazon.com/cli/latest/reference/rds/describe-db-log-files.html /
1121-
https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.Procedural.Viewing.html' as documentation_link,
1122-
>>>>>>> feature/low_priority_checks
11231116
5 as severity_order;
11241117
end;
11251118
-- Return results ordered by severity

testing/aws/deploy/pg17/locals.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ locals {
22
service = "pg17"
33
database_name = "pgFirstAid"
44
engine = "postgres"
5-
engine_version = ""
5+
engine_version = "17.4"
66
engine_family = "postgres17"
77
db_parameter_group = [
88
{

testing/gcp/deploy/pg15/locals.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
locals {
2-
project_id = "" # Set your GCP project ID
2+
project_id = "pgfirstaid"
33
region = "us-west1"
44
instance_name = "pgfirstaid-pg15"
55
postgres_version = "POSTGRES_15"

testing/gcp/deploy/pg15/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
google = {
44
source = "hashicorp/google"
5-
version = ">= 5.0"
5+
version = ">= 7.16.0"
66
}
77
random = {
88
source = "hashicorp/random"

testing/gcp/deploy/pg16/locals.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
locals {
2-
project_id = "" # Set your GCP project ID
2+
project_id = "pgfirstaid"
33
region = "us-west1"
44
instance_name = "pgfirstaid-pg16"
55
postgres_version = "POSTGRES_16"

testing/gcp/deploy/pg16/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
google = {
44
source = "hashicorp/google"
5-
version = ">= 5.0"
5+
version = ">= 7.16.0"
66
}
77
random = {
88
source = "hashicorp/random"

testing/gcp/deploy/pg17/locals.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
locals {
2-
project_id = "" # Set your GCP project ID
2+
project_id = "pgfirstaid"
33
region = "us-west1"
44
instance_name = "pgfirstaid-pg17"
55
postgres_version = "POSTGRES_17"

testing/gcp/deploy/pg17/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
google = {
44
source = "hashicorp/google"
5-
version = ">= 5.0"
5+
version = ">= 7.16.0"
66
}
77
random = {
88
source = "hashicorp/random"

testing/gcp/deploy/pg18/locals.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
locals {
2-
project_id = ""
2+
project_id = "pgfirstaid"
33
region = "us-west1"
44
instance_name = "pgfirstaid-pg18"
55
postgres_version = "POSTGRES_18"

testing/gcp/deploy/pg18/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
google = {
44
source = "hashicorp/google"
5-
version = ">= 5.0"
5+
version = ">= 7.16.0"
66
}
77
random = {
88
source = "hashicorp/random"

0 commit comments

Comments
 (0)