-
Notifications
You must be signed in to change notification settings - Fork 40
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
support imported edges #960
Conversation
47600c5
to
2c1ff5c
Compare
@@ -47,6 +47,20 @@ func (v *pathExpandVertex) Key() Key { | |||
} | |||
|
|||
func (v *pathExpandVertex) Evaluate(eval *Evaluator) error { | |||
// if both the source and target are imported resources we can skip the evaluation since its just for context | |||
// we will ensure the edge remains | |||
sourceRes, err := eval.Solution.RawView().Vertex(v.SatisfactionEdge.Source) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IMO these shouldn't even result in a pathExpandVertex
because it gives the wrong impression looking at the eval graph. Not a blocker though since it doesn't change behaviour.
function properties(object: ReturnType<typeof create>, args: Args) {} | ||
function properties(object: ReturnType<typeof create>, args: Args) { | ||
return { | ||
DomainName: pulumi.interpolate`https://${object.domainName}`, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This isn't the domain name, but a URL base.
Co-authored-by: Gordon <[email protected]>
Standard checks