dr-yd

Results 4 issues of dr-yd

### Terraform Version ``` Terraform v1.0.9 on darwin_amd64 + provider registry.terraform.io/hashicorp/aws v3.35.0 + provider registry.terraform.io/hashicorp/local v2.1.0 + provider registry.terraform.io/hashicorp/null v3.1.0 ``` Issue seems to exists in any version after v1.0.4....

bug
config
confirmed
v1.0

### Terraform Version Working: v1.2.2 Broken: ``` Terraform v1.2.3 on darwin_arm64 + provider registry.terraform.io/hashicorp/archive v2.2.0 + provider registry.terraform.io/hashicorp/aws v4.21.0 + provider registry.terraform.io/hashicorp/random v3.3.2 Your version of Terraform is out of...

bug
documentation
upstream
v1.2
go-getter

**Describe the problem** `st2client` uses the `st2actionrunner` image which has volumes defined for `["/home/stanley/.ssh", "/opt/stackstorm/packs", "/opt/stackstorm/virtualenvs"]` and is derived from `st2` which has `["/etc/st2"]`. These volumes are created as empty...

### Description Code example: ```py from nicegui import ui, app class Ui: def __init__(self, callback): self.callback = callback app.on_connect(self.callback) class Obj: def __init__(self): self.ui = Ui(self.on_connect) def on_connect(self): print(app.storage.user.get('test')) @ui.page('/')...

bug