Eimantas Gecas
Eimantas Gecas
if I have a resource such as ```hcl resource aws_s3_bucket this { tags = local.tags } ``` I see that config-lint injects local.tags into tags there when reading the files...
A very common pattern for terraform resources is to have common tags defined in locals, and then use terraforms merge function to merge in extra resource-specific tags, per resource i.e...
In python, typing.Union can be merged ```py a = Union[Test, Test0] b = Union[Test1, Test2] c = Union[a, b] c == Union[Test, Test0, Test1, Test2] ``` Being able to merge...
Unless I'm misunderstanding something, if token is a required variable for the provider setup, then how can the provider pick PAGERDUTY_TOKEN env var up automatically?
It seems that the aws_resource_missing_tags does not trigger an error for missing tags if any of the tags are null, a variable, a datasource, or if the tags on a...
```hcl Error: Provider produced inconsistent final plan When expanding the plan for module.packages_bucket_us_east_1.aws_s3_bucket.main to include new values learned so far during apply, provider "registry.terraform.io/hashicorp/aws" produced an invalid new value for...
### Terraform Version ```shell 1.6.5 ``` ### Use Cases When running Terraform in automation, where plan and apply are run on two different machines (PR -> Merge workflow in Github...
Hi I would like to type a decorator which takes as input a class and returns the same class with added attributes, i.e., a subclass. Example: ```py import typing _T...
v4, graphql api, uses POST for all operations, including read RateLimitTransport sleeps for 1s between each POST/PATCH/PUT/DELETE operation Say you have 100 repos with 3 branch protection rules each, the...
**Description:** Would be great if an arbirary path to a virtual environment could be cached, instead of / in addition to the default `pip` and `pipenv` caching behaviours. **Justification:** Using...