We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
mockPluggableStateStorageProvider
1 parent c4555af commit 444c044Copy full SHA for 444c044
internal/command/init_test.go
@@ -4371,8 +4371,17 @@ func mockPluggableStateStorageProvider(t *testing.T) *testing_provider.MockProvi
4371
},
4372
4373
4374
- DataSources: map[string]providers.Schema{},
4375
- ResourceTypes: map[string]providers.Schema{},
+ DataSources: map[string]providers.Schema{},
+ ResourceTypes: map[string]providers.Schema{
4376
+ "test_instance": {
4377
+ Body: &configschema.Block{
4378
+ Attributes: map[string]*configschema.Attribute{
4379
+ "input": {Type: cty.String, Optional: true},
4380
+ "id": {Type: cty.String, Computed: true},
4381
+ },
4382
4383
4384
4385
ListResourceTypes: map[string]providers.Schema{},
4386
StateStores: map[string]providers.Schema{
4387
pssName: {
0 commit comments