Skip to content

Commit

Permalink
added aws attributes doc to instance pool and added databricks job an…
Browse files Browse the repository at this point in the history
…d notebook to documentation
  • Loading branch information
stikkireddy committed Apr 14, 2020
1 parent a6d6632 commit cfa660b
Show file tree
Hide file tree
Showing 3 changed files with 452 additions and 1 deletion.
7 changes: 6 additions & 1 deletion docs/source/provider/resources/db_instance_pool.md
Expand Up @@ -19,10 +19,15 @@ cluster to use. Only clusters attached to a pool can use that pool’s idle inst
.. code-block:: tf

resource "db_instance_pool" "my-pool" {
instance_pool_name = "tushars-pool"
instance_pool_name = "demo-terraform-pool"
min_idle_instances = 0
max_capacity = 5
node_type_id = "i3.xlarge"
aws_attributes {
availability = "ON_DEMAND"
zone_id = "us-east-1a"
spot_bid_price_percent = "100"
}
idle_instance_autotermination_minutes = 10
disk_spec = {
ebs_volume_type = "GENERAL_PURPOSE_SSD"
Expand Down

0 comments on commit cfa660b

Please sign in to comment.