Ville Sebastian Olsson

Results 6 comments of Ville Sebastian Olsson

I see at least two options: * Use the value of `flags` for both the `tflint` command and the `tflint --init` command. * Introduce a new parameter, `tflint_init_flags` which can...

@Oaluyi1 Late answer, but you may want to double-check that the inputs to the `terraform-apply` step match exactly with the inputs to the `terraform-plan` step, as described in the [readme](https://github.com/dflook/terraform-apply#inputs)....

Same issue here. A dumb workaround for now is to create a non-flaky dummy test at the end of the module/session scope: ``` @flaky def my_last_real_test(): ... def test_nonflaky_dummy(): #...

This is mentioned in the FAQ: https://github.com/aws-ia/terraform-aws-eks-blueprints/blob/main/FAQ.md#unable-to-destroy-namespace-created-by-terraform You can work around the problem by adding a `local-exec` provisioner that automatically cleans up orphaned resources upon `terraform destroy`. This is how...

I ended up writing a script that helps me toggle the recorder on/off in the AFT management account. There is a service control policy managed by Control Tower which prevents...

In my case, I had forgotten to add a a `required_providers` block inside one of my sub-modules. Once I added it and reran `terraform init`, the resource was created successfully....