Skip to content

Commit

Permalink
updates resource example to include ip_allow_list (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
shahadarsh authored Oct 17, 2023
1 parent 00cef7a commit ce2a0a4
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 22 deletions.
23 changes: 12 additions & 11 deletions docs/resources/instance.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,18 @@ resource "tembo_instance" "test_instance" {
memory = "4Gi"
storage = "10Gi"
replicas = 1
# extra_domains_rw = ["sample-invalid-domain.test.tembo-development.com"]
postgres_configs = [
{
name = "max_connections"
value = "200"
},
{
name = "wal_buffers"
value = "10"
}
]
#ip_allow_list = ["71.190.46.60"]
#extra_domains_rw = ["sample-invalid-domain.test.tembo-development.com"]
#postgres_configs = [
# {
# name = "max_connections"
# value = "200"
# },
# {
# name = "wal_buffers"
# value = "10"
# }
#]
trunk_installs = [
{
name = "pgmq"
Expand Down
23 changes: 12 additions & 11 deletions examples/resources/tembo_instance/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,18 @@ resource "tembo_instance" "test_instance" {
memory = "4Gi"
storage = "10Gi"
replicas = 1
# extra_domains_rw = ["sample-invalid-domain.test.tembo-development.com"]
postgres_configs = [
{
name = "max_connections"
value = "200"
},
{
name = "wal_buffers"
value = "10"
}
]
#ip_allow_list = ["71.190.46.60"]
#extra_domains_rw = ["sample-invalid-domain.test.tembo-development.com"]
#postgres_configs = [
# {
# name = "max_connections"
# value = "200"
# },
# {
# name = "wal_buffers"
# value = "10"
# }
#]
trunk_installs = [
{
name = "pgmq"
Expand Down

0 comments on commit ce2a0a4

Please sign in to comment.