terraform-provider-spacelift icon indicating copy to clipboard operation
terraform-provider-spacelift copied to clipboard

Terraform provider to interact with Spacelift

Results 28 terraform-provider-spacelift issues
Sort by recently updated
recently updated
newest added

I am writing tests for a module which creates several `spacelift_space` containing `spacelift_stack`. During the destroy phase, these tests will almost always fail with the following error: ``` Error: could...

question

Since the [environment variable value is marked always as sensitive](https://github.com/spacelift-io/terraform-provider-spacelift/blob/ea738144ad07b048efc456481bd53ff5e75846f1/spacelift/resource_environment_variable.go#L73), you are not able to see the actual value in the plan. And, especially when you're passing complex data or...

good first issue

My team and I use the Spacelift stack dependencies to order the execution of related runs but we also try to take advantage of the dependency references to map outputs...

Hey team! Would it be possible to be able to retrieve the Azure DevOps integration webhook endpoint via data source in Terraform? The [Azure DevOps integration](https://registry.terraform.io/providers/spacelift-io/spacelift/latest/docs/data-sources/azure_devops_integration) is already able to...

good first issue

Can y'all add a note to the README about how someone outside of spacelift can run the tests? Looks like it expects repos named `demo` and `terraform-bacon-tasty` to exist? I...

Hey 👋 We've been trying to import our AWS integration and we've tried various incantations... The docs say "projectID" but we're assuming that is the stack ID (the slug)? We...

From this terraform plan change within an admin stack run ```hcl # module.spacelift.module.stacks["gbl-corp-infrastructure-snip"].spacelift_space.default[0] will be updated in-place ~ resource "spacelift_space" "default" { id = "infrastructure-snip" ~ labels = [ -...

I can see that some of the other data sources have a `labels` filter, allowing us to filter which resources come back. The `spacelift_aws_integrations` resource ([link](https://registry.terraform.io/providers/spacelift-io/spacelift/latest/docs/data-sources/aws_integrations#nested-schema-for-integrations)) could be improved by...

I have a terraform module which creates stacks in spacelift using the `spacelift_stack` terraform resource. I am trying to create an automated test for my module using the spacelift module...

The spacelift_space data source should allow finding by the human readable name. It currently only supports finding by the slug. # An example use case data "spacelift_space" "space" { name...