Skip to content

Commit

Permalink
Merge pull request #51 from turbot/release/v0.10
Browse files Browse the repository at this point in the history
Release/v0.10
  • Loading branch information
misraved authored Nov 8, 2023
2 parents 7a5f495 + eba6b98 commit a56899d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## v0.10 [2023-11-03]

_Breaking changes_

- Updated the plugin dependency section of the mod to use `min_version` instead of `version`. ([#49](https://github.com/turbot/steampipe-mod-oci-thrifty/pull/49))

_Bug fixes_

- Fixed dashboard localhost URLs in README and index doc. ([#45](https://github.com/turbot/steampipe-mod-oci-thrifty/pull/45))

## v0.9 [2023-02-10]

_What's new?_
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ steampipe dashboard
```

By default, the dashboard interface will then be launched in a new browser
window at https://localhost:9194. From here, you can run benchmarks by
window at http://localhost:9194. From here, you can run benchmarks by
selecting one or searching for a specific one.

Instead of running benchmarks in a dashboard, you can also run them within your
Expand Down Expand Up @@ -124,7 +124,7 @@ The benchmark queries use common properties (like `connection_name`, `region` an
```shell
SP_VAR_tag_dimensions='[ "Department", "Environment"]' steampipe check control.boot_and_block_volume_large
```

## Contributing

If you have an idea for additional controls or just want to help maintain and extend this mod ([or others](https://github.com/topics/steampipe-mod)) we would love you to join the community and start contributing.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ steampipe dashboard
```

By default, the dashboard interface will then be launched in a new browser
window at https://localhost:9194. From here, you can run benchmarks by
window at http://localhost:9194. From here, you can run benchmarks by
selecting one or searching for a specific one.

Instead of running benchmarks in a dashboard, you can also run them within your
Expand Down
4 changes: 2 additions & 2 deletions mod.sp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ locals {
EOQ

tag_dimensions_qualifier_sql = <<-EOQ
%{~ for dim in var.tag_dimensions }, __QUALIFIER__tags ->> '${dim}' as "${replace(dim, "\"", "\"\"")}"%{ endfor ~}
%{~ for dim in var.tag_dimensions }, __QUALIFIER__tags ->> '${dim}' as "${replace(dim, "\"", "\"\"")}"%{ endfor ~}
EOQ

}
Expand Down Expand Up @@ -72,7 +72,7 @@ mod "oci_thrifty" {

requires {
plugin "oci" {
version = "0.8.1"
min_version = "0.8.1"
}
}
}

0 comments on commit a56899d

Please sign in to comment.