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

WIP: Readd project support to filestate #12134

Closed
wants to merge 16 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
changes:
- type: feat
scope: backend/filestate
description: |
The filestate backend now supports project scoped stacks.
Newly initialized storage will automatically use this mode.
You can migrate your old state store to enable project support by running `pulumi state upgrade`.
Note that this will make the state incompatible with old CLI versions.
Old CLI versions will not understand new stacks, but may write stack files to the old locations;
new CLIs will warn if they see those files and suggest running `pulumi state migrate` again.
2 changes: 1 addition & 1 deletion pkg/backend/backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ type StackReference interface {
// but that information is not part of the StackName() we pass to the engine.
Name() tokens.Name

// Fully qualified name of the stack.
// Fully qualified name of the stack, including any organization, project, or other information.
FullyQualifiedName() tokens.QName
}

Expand Down