Skip to content
New issue

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

resource/aws_vpc: Missing enable_classiclink as output in modern AWS regions #3320

Closed
antonbabenko opened this issue Feb 10, 2018 · 2 comments
Labels
bug Addresses a defect in current functionality. service/ec2 Issues and PRs that pertain to the ec2 service. stale Old or inactive issues managed by automation, if no further action taken these will get closed.

Comments

@antonbabenko
Copy link
Contributor

Affected Resources

  • aws_vpc
  • aws_default_vpc

Terraform Configuration Files

provider "aws" {
  region = "eu-central-1"
}

resource "aws_vpc" "this" { ... }
resource "aws_default_vpc" "this" { ... }

output "vpc_enable_classiclink" {
  description = "Whether or not the VPC has Classiclink enabled"
  value       = "${element(concat(aws_vpc.this.*.enable_classiclink, list("")), 0)}"
}

output "default_vpc_enable_classiclink" {
  description = "Whether or not the VPC has Classiclink enabled"
  value       = "${element(concat(aws_default_vpc.this.*.enable_classiclink, list("")), 0)}"
}

Actual Behavior

* Resource 'aws_vpc.this' does not have attribute 'enable_classiclink' for variable 'aws_vpc.this.*.enable_classiclink'

Important Factoids

Expecting the same behavior for old regions (eg, eu-west-1) as well as for newer (eu-central-1).

References

@antonbabenko antonbabenko changed the title aws_vpc and aws_default_vpc - missing enable_classiclink as output in modern regions resource/aws_vpc: Missing enable_classiclink as output in modern AWS regions Feb 10, 2018
@radeksimko radeksimko added service/ec2 Issues and PRs that pertain to the ec2 service. bug Addresses a defect in current functionality. labels Feb 11, 2018
@github-actions
Copy link

Marking this issue as stale due to inactivity. This helps our maintainers find and focus on the active issues. If this issue receives no comments in the next 30 days it will automatically be closed. Maintainers can also remove the stale label.

If this issue was automatically closed and you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thank you!

@github-actions github-actions bot added the stale Old or inactive issues managed by automation, if no further action taken these will get closed. label Mar 27, 2020
@ghost
Copy link

ghost commented Jul 28, 2020

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.

If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks!

@ghost ghost locked and limited conversation to collaborators Jul 28, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Addresses a defect in current functionality. service/ec2 Issues and PRs that pertain to the ec2 service. stale Old or inactive issues managed by automation, if no further action taken these will get closed.
Projects
None yet
Development

No branches or pull requests

2 participants