HUBS-1804 | Dependabot module updates and version bump #58
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Context:
Dependabot changes and version bump for latest update
Problem:
There were 3 open PR directly to main that are addressed here.
Solution:
bumped the version according to the latest dependabot change and provider version.
Testing:
After updating the version, ran a provision job for postgresql.
TF:
`resource "delphix_vdb" "test_postgres_tf" {
auto_select_repository = true
source_data_id = "10-APPDATA_CONTAINER-1"
name = "test_postgres_tf3"
appdata_source_params = jsonencode({
mountLocation = "/mnt/GAT"
postgresPort = 5434
configSettingsStg = [{ propertyName: "timezone", value:"GMT", commentProperty:false}]
})
appdata_config_params = jsonencode({
name = "Postgres-5434 - /mnt/GAT/data2"
})
config_params = jsonencode({
processes = 151
})
make_current_account_owner = false
}`
Output:
`Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols:
Terraform will perform the following actions:
delphix_vdb.test_postgres_tf will be created
appdata_config_params = jsonencode(
{
+ name = "Postgres-5434 - /mnt/GAT/data2"
}
)
appdata_source_params = jsonencode(
{
+ configSettingsStg = [
+ {
+ commentProperty = false
+ propertyName = "timezone"
+ value = "GMT"
},
]
+ mountLocation = "/mnt/GAT"
+ postgresPort = 5434
}
)
auto_select_repository = true
config_params = jsonencode(
{
+ processes = 151
}
)
creation_date = (known after apply)
database_type = (known after apply)
database_version = (known after apply)
engine_id = (known after apply)
environment_id = (known after apply)
fqdn = (known after apply)
group_name = (known after apply)
id = (known after apply)
ip_address = (known after apply)
make_current_account_owner = false
name = "test_postgres_tf3"
parent_id = (known after apply)
provision_type = "snapshot"
source_data_id = "10-APPDATA_CONTAINER-1"
tags {
}
tags {
}
}
Plan: 1 to add, 0 to change, 0 to destroy.
delphix_vdb.test_postgres_tf: Creating...
delphix_vdb.test_postgres_tf: Still creating... [10s elapsed]
delphix_vdb.test_postgres_tf: Still creating... [20s elapsed]
delphix_vdb.test_postgres_tf: Still creating... [30s elapsed]
delphix_vdb.test_postgres_tf: Still creating... [40s elapsed]
delphix_vdb.test_postgres_tf: Creation complete after 44s [id=10-APPDATA_CONTAINER-3]
Apply complete! Resources: 1 added, 0 changed, 0 destroyed.`