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

Default values in provider functions #1012

Open
kimdre opened this issue Jun 24, 2024 · 0 comments
Open

Default values in provider functions #1012

kimdre opened this issue Jun 24, 2024 · 0 comments
Labels
enhancement New feature or request

Comments

@kimdre
Copy link

kimdre commented Jun 24, 2024

Module version

github.com/hashicorp/terraform-plugin-framework v1.9.0

Use-cases

Omit arguments in provider functions when the default is already the correct value.

e.g. My provider function has a filename argument that often is the same value: .env

Attempted Solutions

Setting defaults to provider functions in the Plugin Framework does not work or I was not able to.

Proposal

Provide a additional Default key to the function definition to specify a default value to a parameter:

func (r ExampleFunction) Definition(_ context.Context, _ function.DefinitionRequest, resp *function.DefinitionResponse) {
	resp.Definition = function.Definition{
		Summary: "Example function",
		MarkdownDescription: "Foo bar",
		Parameters: []function.Parameter{
			function.StringParameter{
				Name: "filename",
				MarkdownDescription: "Path to the dotenv file",
				// Add this 
				Default: ".env",
			},
		},
		Return: function.StringReturn{},
	}
}

References

@kimdre kimdre added the enhancement New feature or request label Jun 24, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant