Skip to content

Commit

Permalink
Merge pull request #7 from stackql/feature/updates
Browse files Browse the repository at this point in the history
aws updates
  • Loading branch information
jeffreyaven authored Jul 17, 2024
2 parents 9362da6 + 6f11eee commit f7ce714
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions notebooks/aws/aws.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"JSON_EXTRACT(state, '$$.Name') as instance_state, \n",
"count(*) as num_instances\n",
"FROM aws.ec2.instances \n",
"WHERE region IN ($regions)\n",
"WHERE region = '$region'\n",
"GROUP BY state"
]
},
Expand All @@ -52,7 +52,7 @@
"%%stackql\n",
"SELECT region, instanceType, COUNT(*) as num_instances\n",
"FROM aws.ec2.instances\n",
"WHERE region IN ($regions)\n",
"WHERE region = '$region'\n",
"GROUP BY instanceType"
]
},
Expand Down

0 comments on commit f7ce714

Please sign in to comment.