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

pulumi complains about changes to unmodified resources #90

Closed
ocobles opened this issue May 8, 2024 · 2 comments
Closed

pulumi complains about changes to unmodified resources #90

ocobles opened this issue May 8, 2024 · 2 comments

Comments

@ocobles
Copy link
Contributor

ocobles commented May 8, 2024

Pulumi tries to recreate some resources without modifications, like the RoutingProtocol resource due to changes in the "name" field even though there are no changes. Although it could be temporarily suppressed with ignore_changes=["name"] we must investigate and identify if we are missing something in the configuration or if there is a problem in the pulumi terraform bridge plugin

routing_protocol_bgp_gcp = equinix.fabric.RoutingProtocol("rp-bgp",
    opts=pulumi.ResourceOptions(
        depends_on=[routing_protocol_direct_gcp],
        ignore_changes=["name"]
    ),
    type="BGP",
    connection_uuid=fabric_connection_gcp.id,
    name="FabricToGCPRoutingProtocolBGP",
    customer_asn=gcp_peer_config.gcp_asn,
    bgp_ipv4=equinix.fabric.RoutingProtocolBgpIpv4Args(
        customer_peer_ip=gcp_peer_config.gcp_router_ip
    ),
)
@ocobles
Copy link
Contributor Author

ocobles commented May 9, 2024

While the issue with field name mentioned above will be fixed in #91 (it was an issue in terraform provider), there are some other resources and fields with that issue that I think it could be a problem with the bridge plugin pulumi/pulumi-terraform-bridge#1951

@ocobles
Copy link
Contributor Author

ocobles commented Jul 8, 2024

@ocobles ocobles closed this as completed Jul 8, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant