Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Errors during tflocal init #70

Open
togakangaroo opened this issue Apr 4, 2025 · 2 comments
Open

Errors during tflocal init #70

togakangaroo opened this issue Apr 4, 2025 · 2 comments

Comments

@togakangaroo
Copy link
Contributor

Running tflocal init

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.

I have a perfectly standard provider.tf file

terraform {
  required_version = "~> 1.8"
  required_providers {
    aws = {
      source  = "hashicorp/aws"
      version = "~> 5.91"
    }
    awscc = {
      source  = "hashicorp/awscc"
      version = "~> 0.14"
    }
    archive = {
      source  = "hashicorp/archive"
      version = "~> 2.4"
    }
  }

  backend "s3" {
    bucket = "ninety-terraform-state"
    key    = "devops-infra"
    region = "us-east-1"
  }
}

provider "aws" {
  region = "us-east-1"
}

provider "awscc" {
  region = "us-east-1"
}

When I parse that with hcl2 I get

with open('/home/gmauer/code/ninety-infra/devops/provider.tf', 'r') as fp:
   foo = hcl2.load(fp)


In [25]:     ...:     ...: 
In [26]: foo
Out[26]: 
{'terraform': [{'required_version': ['~> 1.8'],
   'required_providers': [{'aws': [{'source': 'hashicorp/aws',
       'version': '~> 5.91'}],
     'awscc': [{'source': 'hashicorp/awscc', 'version': '~> 0.14'}],
     'archive': [{'source': 'hashicorp/archive', 'version': '~> 2.4'}]}],
   'backend': [{'s3': {'bucket': ['ninety-terraform-state'],
      'key': ['devops-infra'],
      'region': ['us-east-1']}}],
   '__start_line__': 1,
   '__end_line__': 23}],
 'provider': [{'aws': {'region': ['us-east-1'],
    '__start_line__': 25,
    '__end_line__': 27}},
  {'awscc': {'region': ['us-east-1'],
    '__start_line__': 29,
    '__end_line__': 31}}]}

see that backend[0].s3.bucket? It's a list! The type signature of the handling code is pretty clear that it expects an str

@togakangaroo
Copy link
Contributor Author

This seems to be pretty omnipresent. I changed it to

        get_or_create_bucket(''.join(configs["bucket"]) if type(configs["bucket"]) == list else configs["bucket"])

and just started getting an error elsewhere

@togakangaroo
Copy link
Contributor Author

looks like this is fixed by force upgrading to the latest python-hcl2. Previously I had 5.1.1 but now it's on 7.0.1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant