We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi During Terraform Validate the validation is failing for new release.
module "tgw" { source = "terraform-aws-modules/transit-gateway/aws" version = "2.13.0"
name = "XXXXXX" description = "XXXXXXX"
enable_auto_accept_shared_attachments = true
ram_allow_external_principals = true ram_principals = XXXXX }
Below is the error
root@XXXXXX:/# terraform validate ╷ │ Error: Unsupported argument │ │ on .terraform/modules/tgw/main.tf line 40, in resource "aws_ec2_transit_gateway" "this": │ 40: security_group_referencing_support = var.enable_sg_referencing_support ? "enable" : "disable" │ │ An argument named "security_group_referencing_support" is not expected here.
The text was updated successfully, but these errors were encountered:
I have a similar issue and propose #138 as a fix.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Hi During Terraform Validate the validation is failing for new release.
module "tgw" {
source = "terraform-aws-modules/transit-gateway/aws"
version = "2.13.0"
name = "XXXXXX"
description = "XXXXXXX"
enable_auto_accept_shared_attachments = true
To be enabled later
ram_allow_external_principals = true
ram_principals = XXXXX
}
Below is the error
root@XXXXXX:/# terraform validate
╷
│ Error: Unsupported argument
│
│ on .terraform/modules/tgw/main.tf line 40, in resource "aws_ec2_transit_gateway" "this":
│ 40: security_group_referencing_support = var.enable_sg_referencing_support ? "enable" : "disable"
│
│ An argument named "security_group_referencing_support" is not expected here.
The text was updated successfully, but these errors were encountered: