-
Notifications
You must be signed in to change notification settings - Fork 44
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
Replace "Managed by Terraform" in our docs #2611
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #2611 +/- ##
==========================================
- Coverage 62.79% 62.79% -0.01%
==========================================
Files 389 389
Lines 51938 51939 +1
==========================================
- Hits 32615 32613 -2
- Misses 17515 17517 +2
- Partials 1808 1809 +1 ☔ View full report in Codecov by Sentry. |
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.
Typos and nites but LGTM otherwise. Thank you!
@@ -265,6 +265,36 @@ func TestApplyEditRules(t *testing.T) { | |||
expected: []byte("# Configuration Reference"), | |||
phase: info.PostCodeTranslation, | |||
}, | |||
{ | |||
// Found in azuredevops: https://github.com/pulumi/pulumi-terraform-bridge/issues/2610 | |||
name: `Replaces "Managed by Terraform" with "Manged by Pulumi"`, |
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.
name: `Replaces "Managed by Terraform" with "Manged by Pulumi"`, | |
name: `Replaces "Managed by Terraform" with "Managed by Pulumi"`, |
`), | ||
}, | ||
{ | ||
name: "Does not replace \"Managed by Terraform\" with \"Manged by Pulumi\" (require quotes)", |
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.
name: "Does not replace \"Managed by Terraform\" with \"Manged by Pulumi\" (require quotes)", | |
name: "Does not replace \"Managed by Terraform\" with \"Managed by Pulumi\" without quotes", |
This reads a bit clearer to me. WDYT? Or maybe elaborate in the comment.
name: "Does not replace \"Managed by Terraform\" with \"Manged by Pulumi\" (require quotes)", | ||
// It's harder to tell if Managed by Terraform would sense to replace, so we don't do it for now. | ||
// | ||
// We don't have a canonical example where this does not work. |
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.
What does "does not work" mean here?
Perhaps link a followup issue here that considers adding this? Since presumably if we do do so, this test would fail.
}, | ||
{ | ||
name: "Does not replace \"Managed by Terraform\" with \"Manged by Pulumi\" (require quotes)", | ||
// It's harder to tell if Managed by Terraform would sense to replace, so we don't do it for now. |
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.
// It's harder to tell if Managed by Terraform would sense to replace, so we don't do it for now. | |
// It's harder to tell if Managed by Terraform would make sense to replace, so we don't do it for now. |
Follow-up to #2611, which I didn't realize was set to automerge.
This PR has been shipped in release v3.96.0. |
@ericrudder AFAIK these were all covered in #2619. I took another look at this PR, and couldn't find any typos still present in |
Fixes #2610