Performs a dry-run provision when importing a template. This is used to detect resources that would be provisioned for a workspace in various states. It doesn't define values for rich parameters as they're unknown during template import.
(ctx context.Context, variableValues []*sdkproto.VariableValue, metadata *sdkproto.Metadata)
| 692 | // This is used to detect resources that would be provisioned for a workspace in various states. |
| 693 | // It doesn't define values for rich parameters as they're unknown during template import. |
| 694 | func (r *Runner) runTemplateImportProvision(ctx context.Context, variableValues []*sdkproto.VariableValue, metadata *sdkproto.Metadata) (*templateImportProvision, error) { |
| 695 | return r.runTemplateImportProvisionWithRichParameters(ctx, variableValues, nil, metadata) |
| 696 | } |
| 697 | |
| 698 | // Performs a dry-run provision with provided rich parameters. |
| 699 | // This is used to detect resources that would be provisioned for a workspace in various states. |
no test coverage detected