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

data.google_container_cluster.*.subnetwork is not a self_link #9919

Closed
fdcds opened this issue Aug 26, 2021 · 4 comments
Closed

data.google_container_cluster.*.subnetwork is not a self_link #9919

fdcds opened this issue Aug 26, 2021 · 4 comments
Assignees
Labels

Comments

@fdcds
Copy link

fdcds commented Aug 26, 2021

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request.
  • Please do not leave +1 or me too comments, they generate extra noise for issue followers and do not help prioritize the request.
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment.
  • If an issue is assigned to the modular-magician user, it is either in the process of being autogenerated, or is planned to be autogenerated soon. If an issue is assigned to a user, that user is claiming responsibility for the issue. If an issue is assigned to hashibot, a community member has claimed the issue already.

Terraform Version

Terraform v1.0.5
on linux_amd64
+ provider registry.terraform.io/hashicorp/google v3.81.0

Affected Resource(s)

  • data.google_container_cluster
  • data.google_compute_subnetwork

Terraform Configuration Files

data "google_container_cluster" "default" {
  name = var.gke_cluster_name
}

data "google_compute_subnetwork" "default" {
  self_link = data.google_container_cluster.default.subnetwork
}

Debug Output

│ Error: value projects/PROJECT_ID/regions/europe-west1/subnetworks/default was not a self link
│ 
│   with data.google_compute_subnetwork.default,
│   on main.tf line 19, in data "google_compute_subnetwork" "default":
│   19: data "google_compute_subnetwork" "default" {

Panic Output

Expected Behavior

I would expect data.google_container_cluster.default.subnetwork to contain the value https://www.googleapis.com/compute/v1/projects/PROJECT_ID/regions/europe-west1/subnetworks/default

Actual Behavior

data.google_container_cluster.default.subnetwork contains the value projects/PROJECT_ID/regions/europe-west1/subnetworks/default.

Steps to Reproduce

  1. terraform apply

Important Factoids

References

@fdcds fdcds added the bug label Aug 26, 2021
@fdcds
Copy link
Author

fdcds commented Aug 26, 2021

P.S. Rewriting the code to the following works around around the issue:

data "google_compute_subnetwork" "default" {
  self_link = "https://www.googleapis.com/compute/v1/${data.google_container_cluster.default.subnetwork}"
}

@edwardmedia edwardmedia self-assigned this Aug 26, 2021
@edwardmedia
Copy link
Contributor

@fdcds this self_link should match the one of its resource. Closing the issue then

@fdcds
Copy link
Author

fdcds commented Aug 26, 2021

@fdcds this self_link should match the one of its resource. Closing the issue then

Sorry, I do not understand. Can you please try to rephrase your response?

@github-actions
Copy link

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 have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Sep 26, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

2 participants