You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
During execution "terraform apply" in examples/argocd we receive an error
Warning: Argument is deprecated
│
│ with module.vpc.aws_eip.nat,
│ on .terraform/modules/vpc/main.tf line 929, in resource "aws_eip" "nat":
│ 929: vpc = true
│
│ use domain attribute instead
╵
╷
│ Error: Unsupported argument
│
│ on .terraform/modules/vpc/main.tf line 36, in resource "aws_vpc" "this":
│ 36: enable_classiclink = var.enable_classiclink
│
│ An argument named "enable_classiclink" is not expected here.
╵
╷
│ Error: Unsupported argument
│
│ on .terraform/modules/vpc/main.tf line 37, in resource "aws_vpc" "this":
│ 37: enable_classiclink_dns_support = var.enable_classiclink_dns_support
│
│ An argument named "enable_classiclink_dns_support" is not expected here.
╵
╷
│ Error: Unsupported argument
│
│ on .terraform/modules/vpc/main.tf line 1153, in resource "aws_default_vpc" "this":
│ 1153: enable_classiclink = var.default_vpc_enable_classiclink
│
│ An argument named "enable_classiclink" is not expected here.
Use version
Terraform v1.3.7
on darwin_arm64
terraform aws provider == 5.5.0
To Reproduce
Steps to reproduce the behavior:
Go to examples/argocd
Execute terraform init and terraform apply
Additional context
The problem happened because of deprecation of classiclink in aws terraform provider version 5.0.0.
The closest working version is 4.67.0, by using such version - problem disappears.
The text was updated successfully, but these errors were encountered:
Describe the bug
During execution "terraform apply" in
examples/argocd
we receive an errorUse version
Terraform v1.3.7
on darwin_arm64
terraform aws provider == 5.5.0
To Reproduce
Steps to reproduce the behavior:
examples/argocd
terraform init
andterraform apply
Additional context
The problem happened because of deprecation of
classiclink
in aws terraform provider version 5.0.0.The closest working version is 4.67.0, by using such version - problem disappears.
The text was updated successfully, but these errors were encountered: