rorourke-iot

Results 11 issues of rorourke-iot

The resources for an S3 bucket were generated as ``` resource "aws_s3_bucket" "S3Bucket" { bucket = "my-bucket-XXX" } resource "aws_s3_bucket_policy" "S3BucketPolicy" { bucket = "my-bucket-XXX" policy = "{\"Version\":\"2008-10-17\",\"Statement\":[{\"Effect\":\"Deny\",\"Principal\":\"*\",\"Action\":\"s3:GetObject\",\"Resource\":\"arn:aws:s3:::my-bucket-XXX/*\",\"Condition\":{\"Bool\":{\"aws:SecureTransport\":\"false\"}}}]}" } ```...

In a lot of cases, the generated terraform output contains absolute id values for the resources rather than a reference to the same resource. For example, ``` resource "aws_api_gateway_rest_api" "ApiGatewayRestApi"...

The resource for an AWS secret was generated as ``` resource "aws_secretsmanager_secret" "SecretsManagerSecret" { name = "mySecret-XXX" description = "IAM Access Key Secret" tags = {} } resource "aws_secretsmanager_secret_version" "SecretsManagerSecretVersion"...

While going through clean-up related matching absolute ids with references to resources, I discovered the output for terraform did not include a couple resources. The output had ``` resource "aws_api_gateway_usage_plan_key"...

[Removal of admin_create_user_config.unused_account_validity_days Argument](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/guides/version-3-upgrade#removal-of-admin_create_user_configunused_account_validity_days-argument) documents this issue and the approved replacement.

The resource aws_lambda_function was generated as ``` resource "aws_lambda_function" "" { . . . environment { variables { . . . } } . . . } ``` According to...

The resource aws_api_gateway_authorizer was generated as ``` resource "aws_api_gateway_authorizer" "" { rest_api_id = "" name = "" type = "TOKEN" AuthType = "custom" authorizer_uri = "" identity_source = "method.request.header.Authorization" identity_validation_expression...

Output for the resource aws_api_gateway_method was generated as ``` resource "aws_api_gateway_method" "" { rest_api_id = "" resource_id = "" http_method = "POST" authorization = "CUSTOM" authorizer_id = "" api_key_required =...

I can infer the issue I'm having is similar to "pre-existing color", but I want to confirm. I have cases where I receive an Excel document with cells containing partially...

In the same way LINQPad will put it's label at the beginning of Dump output. ``` ¦ Heading ¦ ╭───────────────╮ ¦ │ "Output Data" │ ¦ ╰───────────────╯ ```

enhancement