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
Describe the bug
Every time I run tofu apply on a project that contains a mgc_network_vpcs resource, this resource is recreated.
tofu apply
mgc_network_vpcs
To Reproduce
Simplest .tf file:
.tf
terraform { required_providers { mgc = { source = "registry.terraform.io/MagaluCloud/mgc" version = "0.30.0" } } } provider "mgc" { api_key = "[your-api-key]" } resource "mgc_network_vpcs" "test-vpc" { name = "test-vpc" }
Steps to reproduce the behavior:
main.tf
Expected behavior
If the VPC has been created before, I expect no changes in the mgc_network_vpcs.resource.id value.
mgc_network_vpcs.resource.id
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered:
lfpicoloto1
No branches or pull requests
Describe the bug
Every time I run
tofu apply
on a project that contains amgc_network_vpcs
resource, this resource is recreated.To Reproduce
Simplest
.tf
file:Steps to reproduce the behavior:
main.tf
tofu apply
, a vpc resource should be createdtofu apply
again, the tool will attempt to replace the former VPC and a new id will be givenExpected behavior
If the VPC has been created before, I expect no changes in the
mgc_network_vpcs.resource.id
value.Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: