Run the following command to build the provider
go build -o terraform-provider-metabaseFirst, build and install the provider.
make installConfigure Metabase URL either using provider configuration directly or using ENV variables.
Get your username and password from Metabase and export them as TF_VARs.
export TF_VAR_metabase_username=user@example.com TF_VAR_metabase_password=xxxxxxxxxxxxxThen, run the following command to initialize the workspace and apply the sample configuration.
cd examples && terraform init && terraform apply