Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove ForceNew from Key project and organization (#10)
Without this, the key would always be recreated when using a list of projects like and adding a new project. ``` resource "sentry_project" "project" { count = "${length(var.apps)}" organization = "${sentry_organization.contentful.id}" team = "${sentry_team.default.id}" name = "${element(var.apps, count.index)}" resolve_age = "${var.sentry_resolve_age}" } resource "sentry_key" "key" { count = "${length(var.apps)}" organization = "${sentry_organization.contentful.id}" project = "${element(sentry_project.project.*.id, count.index)}" name = "Node" } ```
- Loading branch information