func IsPending()

in pkg/cloudformation/helpers.go [81:88]


func IsPending(status string) bool {
	for _, s := range PendingStatuses {
		if s == status {
			return true
		}
	}
	return false
}