You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File ~/.pyenv/versions/3.12.6/lib/python3.12/site-packages/botocore/handlers.py:295, in validate_bucket_name(params, **kwargs)
294 bucket = params['Bucket']
--> 295 if not VALID_BUCKET.search(bucket) and not VALID_S3_ARN.search(bucket):
296 error_msg = (
297 f'Invalid bucket name "{bucket}": Bucket name must match '
298 f'the regex "{VALID_BUCKET.pattern}" or be an ARN matching '
299 f'the regex "{VALID_S3_ARN.pattern}"'
300 )
TypeError: expected string or bytes-like object, got 'list'
Why?
Well, terraform-local seems to use hcl2 to parse terraform files.
Running
tflocal init
Why?
Well, terraform-local seems to use hcl2 to parse terraform files.
I have a perfectly standard provider.tf file
When I parse that with hcl2 I get
see that
backend[0].s3.bucket
? It's a list! The type signature of the handling code is pretty clear that it expects anstr
The text was updated successfully, but these errors were encountered: