You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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"
}
```
0 commit comments