We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Create an integration test framework for the provider.
It should do the following:
Given:
main.tf
terraform apply
Then:
terraform plan
Note: "state" here is intentionally left open; it could be derived from the codersdk.Client or actually inspect the tfstate.
codersdk.Client
tfstate
It will likely look similar to https://github.com/coder/terraform-provider-coder/blob/main/integration/
The text was updated successfully, but these errors were encountered:
This is done, with an example test.
https://github.com/coder/terraform-provider-coder/blob/main/integration/integration_test.go
Sorry, something went wrong.
johnstcn
No branches or pull requests
Create an integration test framework for the provider.
It should do the following:
Given:
main.tf
terraform apply
Then:
main.tf
and executeterraform plan
against the Coder instance,Note: "state" here is intentionally left open; it could be derived from the
codersdk.Client
or actually inspect thetfstate
.It will likely look similar to https://github.com/coder/terraform-provider-coder/blob/main/integration/
The text was updated successfully, but these errors were encountered: