experiments: config_driven_move has concluded

Based on feedback during earlier alpha releases, we've decided to move
forward with the current design for the first phase of config-driven
refactoring.

Therefore here we've marked the experiment as concluded with no changes
to the most recent incarnation of the functionality. The other changes
here are all just updating test fixtures to no longer declare that they
are using experimental features.
This commit is contained in:
Martin Atkins
2021-10-29 14:48:23 -07:00
parent 51bf9fd19c
commit 94cbc8fb5d
9 changed files with 7 additions and 54 deletions

View File

@@ -12,10 +12,6 @@ resource "test_instance" "should_refresh_with_move" {
ami = "baz"
}
terraform {
experiments = [ config_driven_move ]
}
moved {
from = test_instance.should_refresh
to = test_instance.should_refresh_with_move

View File

@@ -2,10 +2,6 @@ resource "test_instance" "baz" {
ami = "baz"
}
terraform {
experiments = [ config_driven_move ]
}
moved {
from = test_instance.foo
to = test_instance.baz